@g2gs/contracts 1.0.37 → 1.0.39
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/admin/inventory/v1/service_connect.d.ts +89 -0
- package/admin/inventory/v1/service_connect.js +89 -0
- package/admin/inventory/v1/service_pb.d.ts +569 -0
- package/admin/inventory/v1/service_pb.js +165 -0
- package/admin/product/v1/service_pb.d.ts +22 -2
- package/admin/product/v1/service_pb.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.6.1
|
|
2
|
+
// @generated from file admin/inventory/v1/service.proto (package admin.inventory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import { CreateItemRequest, CreateItemResponse, GetItemRequest, GetItemResponse, InvalidateItemRequest, InvalidateItemResponse, ListIssuancesByItemRequest, ListIssuancesByItemResponse, ListItemsRequest, ListItemsResponse, ResetItemCategoryLimitRequest, ResetItemCategoryLimitResponse, SetItemExpirationDateRequest, SetItemExpirationDateResponse, UpdateItemRequest, UpdateItemResponse } from "./service_pb.js";
|
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @generated from service admin.inventory.v1.InventoryAdminService
|
|
11
|
+
*/
|
|
12
|
+
export declare const InventoryAdminService: {
|
|
13
|
+
readonly typeName: "admin.inventory.v1.InventoryAdminService",
|
|
14
|
+
readonly methods: {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.CreateItem
|
|
17
|
+
*/
|
|
18
|
+
readonly createItem: {
|
|
19
|
+
readonly name: "CreateItem",
|
|
20
|
+
readonly I: typeof CreateItemRequest,
|
|
21
|
+
readonly O: typeof CreateItemResponse,
|
|
22
|
+
readonly kind: MethodKind.Unary,
|
|
23
|
+
},
|
|
24
|
+
/**
|
|
25
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.UpdateItem
|
|
26
|
+
*/
|
|
27
|
+
readonly updateItem: {
|
|
28
|
+
readonly name: "UpdateItem",
|
|
29
|
+
readonly I: typeof UpdateItemRequest,
|
|
30
|
+
readonly O: typeof UpdateItemResponse,
|
|
31
|
+
readonly kind: MethodKind.Unary,
|
|
32
|
+
},
|
|
33
|
+
/**
|
|
34
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.GetItem
|
|
35
|
+
*/
|
|
36
|
+
readonly getItem: {
|
|
37
|
+
readonly name: "GetItem",
|
|
38
|
+
readonly I: typeof GetItemRequest,
|
|
39
|
+
readonly O: typeof GetItemResponse,
|
|
40
|
+
readonly kind: MethodKind.Unary,
|
|
41
|
+
},
|
|
42
|
+
/**
|
|
43
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.ListItems
|
|
44
|
+
*/
|
|
45
|
+
readonly listItems: {
|
|
46
|
+
readonly name: "ListItems",
|
|
47
|
+
readonly I: typeof ListItemsRequest,
|
|
48
|
+
readonly O: typeof ListItemsResponse,
|
|
49
|
+
readonly kind: MethodKind.Unary,
|
|
50
|
+
},
|
|
51
|
+
/**
|
|
52
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.InvalidateItem
|
|
53
|
+
*/
|
|
54
|
+
readonly invalidateItem: {
|
|
55
|
+
readonly name: "InvalidateItem",
|
|
56
|
+
readonly I: typeof InvalidateItemRequest,
|
|
57
|
+
readonly O: typeof InvalidateItemResponse,
|
|
58
|
+
readonly kind: MethodKind.Unary,
|
|
59
|
+
},
|
|
60
|
+
/**
|
|
61
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.ListIssuancesByItem
|
|
62
|
+
*/
|
|
63
|
+
readonly listIssuancesByItem: {
|
|
64
|
+
readonly name: "ListIssuancesByItem",
|
|
65
|
+
readonly I: typeof ListIssuancesByItemRequest,
|
|
66
|
+
readonly O: typeof ListIssuancesByItemResponse,
|
|
67
|
+
readonly kind: MethodKind.Unary,
|
|
68
|
+
},
|
|
69
|
+
/**
|
|
70
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.ResetItemCategoryLimit
|
|
71
|
+
*/
|
|
72
|
+
readonly resetItemCategoryLimit: {
|
|
73
|
+
readonly name: "ResetItemCategoryLimit",
|
|
74
|
+
readonly I: typeof ResetItemCategoryLimitRequest,
|
|
75
|
+
readonly O: typeof ResetItemCategoryLimitResponse,
|
|
76
|
+
readonly kind: MethodKind.Unary,
|
|
77
|
+
},
|
|
78
|
+
/**
|
|
79
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.SetItemExpirationDate
|
|
80
|
+
*/
|
|
81
|
+
readonly setItemExpirationDate: {
|
|
82
|
+
readonly name: "SetItemExpirationDate",
|
|
83
|
+
readonly I: typeof SetItemExpirationDateRequest,
|
|
84
|
+
readonly O: typeof SetItemExpirationDateResponse,
|
|
85
|
+
readonly kind: MethodKind.Unary,
|
|
86
|
+
},
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
// @generated by protoc-gen-connect-es v1.6.1
|
|
2
|
+
// @generated from file admin/inventory/v1/service.proto (package admin.inventory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import { CreateItemRequest, CreateItemResponse, GetItemRequest, GetItemResponse, InvalidateItemRequest, InvalidateItemResponse, ListIssuancesByItemRequest, ListIssuancesByItemResponse, ListItemsRequest, ListItemsResponse, ResetItemCategoryLimitRequest, ResetItemCategoryLimitResponse, SetItemExpirationDateRequest, SetItemExpirationDateResponse, UpdateItemRequest, UpdateItemResponse } from "./service_pb.js";
|
|
7
|
+
import { MethodKind } from "@bufbuild/protobuf";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @generated from service admin.inventory.v1.InventoryAdminService
|
|
11
|
+
*/
|
|
12
|
+
export const InventoryAdminService = {
|
|
13
|
+
typeName: "admin.inventory.v1.InventoryAdminService",
|
|
14
|
+
methods: {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.CreateItem
|
|
17
|
+
*/
|
|
18
|
+
createItem: {
|
|
19
|
+
name: "CreateItem",
|
|
20
|
+
I: CreateItemRequest,
|
|
21
|
+
O: CreateItemResponse,
|
|
22
|
+
kind: MethodKind.Unary,
|
|
23
|
+
},
|
|
24
|
+
/**
|
|
25
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.UpdateItem
|
|
26
|
+
*/
|
|
27
|
+
updateItem: {
|
|
28
|
+
name: "UpdateItem",
|
|
29
|
+
I: UpdateItemRequest,
|
|
30
|
+
O: UpdateItemResponse,
|
|
31
|
+
kind: MethodKind.Unary,
|
|
32
|
+
},
|
|
33
|
+
/**
|
|
34
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.GetItem
|
|
35
|
+
*/
|
|
36
|
+
getItem: {
|
|
37
|
+
name: "GetItem",
|
|
38
|
+
I: GetItemRequest,
|
|
39
|
+
O: GetItemResponse,
|
|
40
|
+
kind: MethodKind.Unary,
|
|
41
|
+
},
|
|
42
|
+
/**
|
|
43
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.ListItems
|
|
44
|
+
*/
|
|
45
|
+
listItems: {
|
|
46
|
+
name: "ListItems",
|
|
47
|
+
I: ListItemsRequest,
|
|
48
|
+
O: ListItemsResponse,
|
|
49
|
+
kind: MethodKind.Unary,
|
|
50
|
+
},
|
|
51
|
+
/**
|
|
52
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.InvalidateItem
|
|
53
|
+
*/
|
|
54
|
+
invalidateItem: {
|
|
55
|
+
name: "InvalidateItem",
|
|
56
|
+
I: InvalidateItemRequest,
|
|
57
|
+
O: InvalidateItemResponse,
|
|
58
|
+
kind: MethodKind.Unary,
|
|
59
|
+
},
|
|
60
|
+
/**
|
|
61
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.ListIssuancesByItem
|
|
62
|
+
*/
|
|
63
|
+
listIssuancesByItem: {
|
|
64
|
+
name: "ListIssuancesByItem",
|
|
65
|
+
I: ListIssuancesByItemRequest,
|
|
66
|
+
O: ListIssuancesByItemResponse,
|
|
67
|
+
kind: MethodKind.Unary,
|
|
68
|
+
},
|
|
69
|
+
/**
|
|
70
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.ResetItemCategoryLimit
|
|
71
|
+
*/
|
|
72
|
+
resetItemCategoryLimit: {
|
|
73
|
+
name: "ResetItemCategoryLimit",
|
|
74
|
+
I: ResetItemCategoryLimitRequest,
|
|
75
|
+
O: ResetItemCategoryLimitResponse,
|
|
76
|
+
kind: MethodKind.Unary,
|
|
77
|
+
},
|
|
78
|
+
/**
|
|
79
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.SetItemExpirationDate
|
|
80
|
+
*/
|
|
81
|
+
setItemExpirationDate: {
|
|
82
|
+
name: "SetItemExpirationDate",
|
|
83
|
+
I: SetItemExpirationDateRequest,
|
|
84
|
+
O: SetItemExpirationDateResponse,
|
|
85
|
+
kind: MethodKind.Unary,
|
|
86
|
+
},
|
|
87
|
+
}
|
|
88
|
+
};
|
|
89
|
+
|
|
@@ -0,0 +1,569 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file admin/inventory/v1/service.proto (package admin.inventory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file admin/inventory/v1/service.proto.
|
|
11
|
+
*/
|
|
12
|
+
export declare const file_admin_inventory_v1_service: GenFile;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* @generated from message admin.inventory.v1.ItemField
|
|
16
|
+
*/
|
|
17
|
+
export declare type ItemField = Message<"admin.inventory.v1.ItemField"> & {
|
|
18
|
+
/**
|
|
19
|
+
* @generated from field: string title = 1;
|
|
20
|
+
*/
|
|
21
|
+
title: string;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: string value = 2;
|
|
25
|
+
*/
|
|
26
|
+
value: string;
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Describes the message admin.inventory.v1.ItemField.
|
|
31
|
+
* Use `create(ItemFieldSchema)` to create a new message.
|
|
32
|
+
*/
|
|
33
|
+
export declare const ItemFieldSchema: GenMessage<ItemField>;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @generated from message admin.inventory.v1.Item
|
|
37
|
+
*/
|
|
38
|
+
export declare type Item = Message<"admin.inventory.v1.Item"> & {
|
|
39
|
+
/**
|
|
40
|
+
* @generated from field: uint64 item_id = 1;
|
|
41
|
+
*/
|
|
42
|
+
itemId: bigint;
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* @generated from field: uint64 variant_id = 2;
|
|
46
|
+
*/
|
|
47
|
+
variantId: bigint;
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* @generated from field: string comment = 3;
|
|
51
|
+
*/
|
|
52
|
+
comment: string;
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* @generated from field: admin.inventory.v1.ItemStatus status = 4;
|
|
56
|
+
*/
|
|
57
|
+
status: ItemStatus;
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* @generated from field: repeated admin.inventory.v1.ItemField fields = 5;
|
|
61
|
+
*/
|
|
62
|
+
fields: ItemField[];
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* @generated from field: uint32 version = 6;
|
|
66
|
+
*/
|
|
67
|
+
version: number;
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* @generated from field: google.protobuf.Timestamp created_at = 7;
|
|
71
|
+
*/
|
|
72
|
+
createdAt?: Timestamp;
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 8;
|
|
76
|
+
*/
|
|
77
|
+
updatedAt?: Timestamp;
|
|
78
|
+
};
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Describes the message admin.inventory.v1.Item.
|
|
82
|
+
* Use `create(ItemSchema)` to create a new message.
|
|
83
|
+
*/
|
|
84
|
+
export declare const ItemSchema: GenMessage<Item>;
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* @generated from message admin.inventory.v1.Issuance
|
|
88
|
+
*/
|
|
89
|
+
export declare type Issuance = Message<"admin.inventory.v1.Issuance"> & {
|
|
90
|
+
/**
|
|
91
|
+
* @generated from field: uint64 issuance_id = 1;
|
|
92
|
+
*/
|
|
93
|
+
issuanceId: bigint;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* @generated from field: uint64 item_id = 2;
|
|
97
|
+
*/
|
|
98
|
+
itemId: bigint;
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* @generated from field: uint64 order_id = 3;
|
|
102
|
+
*/
|
|
103
|
+
orderId: bigint;
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* @generated from field: uint64 buyer_id = 4;
|
|
107
|
+
*/
|
|
108
|
+
buyerId: bigint;
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* @generated from field: optional uint64 category_id = 5;
|
|
112
|
+
*/
|
|
113
|
+
categoryId?: bigint;
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* @generated from field: google.protobuf.Timestamp issued_at = 6;
|
|
117
|
+
*/
|
|
118
|
+
issuedAt?: Timestamp;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* @generated from field: google.protobuf.Timestamp expires_at = 7;
|
|
122
|
+
*/
|
|
123
|
+
expiresAt?: Timestamp;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @generated from field: optional google.protobuf.Timestamp released_at = 8;
|
|
127
|
+
*/
|
|
128
|
+
releasedAt?: Timestamp;
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* @generated from field: optional string released_reason = 9;
|
|
132
|
+
*/
|
|
133
|
+
releasedReason?: string;
|
|
134
|
+
};
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* Describes the message admin.inventory.v1.Issuance.
|
|
138
|
+
* Use `create(IssuanceSchema)` to create a new message.
|
|
139
|
+
*/
|
|
140
|
+
export declare const IssuanceSchema: GenMessage<Issuance>;
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* ========================================
|
|
144
|
+
* Requests / Responses
|
|
145
|
+
* ========================================
|
|
146
|
+
*
|
|
147
|
+
* @generated from message admin.inventory.v1.CreateItemRequest
|
|
148
|
+
*/
|
|
149
|
+
export declare type CreateItemRequest = Message<"admin.inventory.v1.CreateItemRequest"> & {
|
|
150
|
+
/**
|
|
151
|
+
* @generated from field: uint64 variant_id = 1;
|
|
152
|
+
*/
|
|
153
|
+
variantId: bigint;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* @generated from field: string comment = 2;
|
|
157
|
+
*/
|
|
158
|
+
comment: string;
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* @generated from field: repeated admin.inventory.v1.ItemField fields = 3;
|
|
162
|
+
*/
|
|
163
|
+
fields: ItemField[];
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* Describes the message admin.inventory.v1.CreateItemRequest.
|
|
168
|
+
* Use `create(CreateItemRequestSchema)` to create a new message.
|
|
169
|
+
*/
|
|
170
|
+
export declare const CreateItemRequestSchema: GenMessage<CreateItemRequest>;
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* @generated from message admin.inventory.v1.CreateItemResponse
|
|
174
|
+
*/
|
|
175
|
+
export declare type CreateItemResponse = Message<"admin.inventory.v1.CreateItemResponse"> & {
|
|
176
|
+
/**
|
|
177
|
+
* @generated from field: admin.inventory.v1.Item item = 1;
|
|
178
|
+
*/
|
|
179
|
+
item?: Item;
|
|
180
|
+
};
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Describes the message admin.inventory.v1.CreateItemResponse.
|
|
184
|
+
* Use `create(CreateItemResponseSchema)` to create a new message.
|
|
185
|
+
*/
|
|
186
|
+
export declare const CreateItemResponseSchema: GenMessage<CreateItemResponse>;
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* @generated from message admin.inventory.v1.UpdateItemRequest
|
|
190
|
+
*/
|
|
191
|
+
export declare type UpdateItemRequest = Message<"admin.inventory.v1.UpdateItemRequest"> & {
|
|
192
|
+
/**
|
|
193
|
+
* @generated from field: uint64 item_id = 1;
|
|
194
|
+
*/
|
|
195
|
+
itemId: bigint;
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* @generated from field: optional string comment = 2;
|
|
199
|
+
*/
|
|
200
|
+
comment?: string;
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* @generated from field: optional admin.inventory.v1.ItemStatus status = 3;
|
|
204
|
+
*/
|
|
205
|
+
status?: ItemStatus;
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* @generated from field: repeated admin.inventory.v1.ItemField fields = 4;
|
|
209
|
+
*/
|
|
210
|
+
fields: ItemField[];
|
|
211
|
+
};
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Describes the message admin.inventory.v1.UpdateItemRequest.
|
|
215
|
+
* Use `create(UpdateItemRequestSchema)` to create a new message.
|
|
216
|
+
*/
|
|
217
|
+
export declare const UpdateItemRequestSchema: GenMessage<UpdateItemRequest>;
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* @generated from message admin.inventory.v1.UpdateItemResponse
|
|
221
|
+
*/
|
|
222
|
+
export declare type UpdateItemResponse = Message<"admin.inventory.v1.UpdateItemResponse"> & {
|
|
223
|
+
/**
|
|
224
|
+
* @generated from field: admin.inventory.v1.Item item = 1;
|
|
225
|
+
*/
|
|
226
|
+
item?: Item;
|
|
227
|
+
};
|
|
228
|
+
|
|
229
|
+
/**
|
|
230
|
+
* Describes the message admin.inventory.v1.UpdateItemResponse.
|
|
231
|
+
* Use `create(UpdateItemResponseSchema)` to create a new message.
|
|
232
|
+
*/
|
|
233
|
+
export declare const UpdateItemResponseSchema: GenMessage<UpdateItemResponse>;
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* @generated from message admin.inventory.v1.GetItemRequest
|
|
237
|
+
*/
|
|
238
|
+
export declare type GetItemRequest = Message<"admin.inventory.v1.GetItemRequest"> & {
|
|
239
|
+
/**
|
|
240
|
+
* @generated from field: uint64 item_id = 1;
|
|
241
|
+
*/
|
|
242
|
+
itemId: bigint;
|
|
243
|
+
};
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* Describes the message admin.inventory.v1.GetItemRequest.
|
|
247
|
+
* Use `create(GetItemRequestSchema)` to create a new message.
|
|
248
|
+
*/
|
|
249
|
+
export declare const GetItemRequestSchema: GenMessage<GetItemRequest>;
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* @generated from message admin.inventory.v1.GetItemResponse
|
|
253
|
+
*/
|
|
254
|
+
export declare type GetItemResponse = Message<"admin.inventory.v1.GetItemResponse"> & {
|
|
255
|
+
/**
|
|
256
|
+
* @generated from field: admin.inventory.v1.Item item = 1;
|
|
257
|
+
*/
|
|
258
|
+
item?: Item;
|
|
259
|
+
};
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
* Describes the message admin.inventory.v1.GetItemResponse.
|
|
263
|
+
* Use `create(GetItemResponseSchema)` to create a new message.
|
|
264
|
+
*/
|
|
265
|
+
export declare const GetItemResponseSchema: GenMessage<GetItemResponse>;
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* @generated from message admin.inventory.v1.ListItemsRequest
|
|
269
|
+
*/
|
|
270
|
+
export declare type ListItemsRequest = Message<"admin.inventory.v1.ListItemsRequest"> & {
|
|
271
|
+
/**
|
|
272
|
+
* @generated from field: optional uint64 variant_id = 1;
|
|
273
|
+
*/
|
|
274
|
+
variantId?: bigint;
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* @generated from field: optional admin.inventory.v1.ItemStatus status = 2;
|
|
278
|
+
*/
|
|
279
|
+
status?: ItemStatus;
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* @generated from field: optional string search = 3;
|
|
283
|
+
*/
|
|
284
|
+
search?: string;
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* @generated from field: uint32 limit = 4;
|
|
288
|
+
*/
|
|
289
|
+
limit: number;
|
|
290
|
+
|
|
291
|
+
/**
|
|
292
|
+
* @generated from field: uint64 offset = 5;
|
|
293
|
+
*/
|
|
294
|
+
offset: bigint;
|
|
295
|
+
};
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* Describes the message admin.inventory.v1.ListItemsRequest.
|
|
299
|
+
* Use `create(ListItemsRequestSchema)` to create a new message.
|
|
300
|
+
*/
|
|
301
|
+
export declare const ListItemsRequestSchema: GenMessage<ListItemsRequest>;
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* @generated from message admin.inventory.v1.ListItemsResponse
|
|
305
|
+
*/
|
|
306
|
+
export declare type ListItemsResponse = Message<"admin.inventory.v1.ListItemsResponse"> & {
|
|
307
|
+
/**
|
|
308
|
+
* @generated from field: repeated admin.inventory.v1.Item items = 1;
|
|
309
|
+
*/
|
|
310
|
+
items: Item[];
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* @generated from field: uint64 total = 2;
|
|
314
|
+
*/
|
|
315
|
+
total: bigint;
|
|
316
|
+
};
|
|
317
|
+
|
|
318
|
+
/**
|
|
319
|
+
* Describes the message admin.inventory.v1.ListItemsResponse.
|
|
320
|
+
* Use `create(ListItemsResponseSchema)` to create a new message.
|
|
321
|
+
*/
|
|
322
|
+
export declare const ListItemsResponseSchema: GenMessage<ListItemsResponse>;
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* @generated from message admin.inventory.v1.InvalidateItemRequest
|
|
326
|
+
*/
|
|
327
|
+
export declare type InvalidateItemRequest = Message<"admin.inventory.v1.InvalidateItemRequest"> & {
|
|
328
|
+
/**
|
|
329
|
+
* @generated from field: uint64 item_id = 1;
|
|
330
|
+
*/
|
|
331
|
+
itemId: bigint;
|
|
332
|
+
};
|
|
333
|
+
|
|
334
|
+
/**
|
|
335
|
+
* Describes the message admin.inventory.v1.InvalidateItemRequest.
|
|
336
|
+
* Use `create(InvalidateItemRequestSchema)` to create a new message.
|
|
337
|
+
*/
|
|
338
|
+
export declare const InvalidateItemRequestSchema: GenMessage<InvalidateItemRequest>;
|
|
339
|
+
|
|
340
|
+
/**
|
|
341
|
+
* @generated from message admin.inventory.v1.InvalidateItemResponse
|
|
342
|
+
*/
|
|
343
|
+
export declare type InvalidateItemResponse = Message<"admin.inventory.v1.InvalidateItemResponse"> & {
|
|
344
|
+
};
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* Describes the message admin.inventory.v1.InvalidateItemResponse.
|
|
348
|
+
* Use `create(InvalidateItemResponseSchema)` to create a new message.
|
|
349
|
+
*/
|
|
350
|
+
export declare const InvalidateItemResponseSchema: GenMessage<InvalidateItemResponse>;
|
|
351
|
+
|
|
352
|
+
/**
|
|
353
|
+
* @generated from message admin.inventory.v1.ListIssuancesByItemRequest
|
|
354
|
+
*/
|
|
355
|
+
export declare type ListIssuancesByItemRequest = Message<"admin.inventory.v1.ListIssuancesByItemRequest"> & {
|
|
356
|
+
/**
|
|
357
|
+
* @generated from field: uint64 item_id = 1;
|
|
358
|
+
*/
|
|
359
|
+
itemId: bigint;
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* @generated from field: uint32 limit = 2;
|
|
363
|
+
*/
|
|
364
|
+
limit: number;
|
|
365
|
+
|
|
366
|
+
/**
|
|
367
|
+
* @generated from field: uint64 offset = 3;
|
|
368
|
+
*/
|
|
369
|
+
offset: bigint;
|
|
370
|
+
};
|
|
371
|
+
|
|
372
|
+
/**
|
|
373
|
+
* Describes the message admin.inventory.v1.ListIssuancesByItemRequest.
|
|
374
|
+
* Use `create(ListIssuancesByItemRequestSchema)` to create a new message.
|
|
375
|
+
*/
|
|
376
|
+
export declare const ListIssuancesByItemRequestSchema: GenMessage<ListIssuancesByItemRequest>;
|
|
377
|
+
|
|
378
|
+
/**
|
|
379
|
+
* @generated from message admin.inventory.v1.ListIssuancesByItemResponse
|
|
380
|
+
*/
|
|
381
|
+
export declare type ListIssuancesByItemResponse = Message<"admin.inventory.v1.ListIssuancesByItemResponse"> & {
|
|
382
|
+
/**
|
|
383
|
+
* @generated from field: repeated admin.inventory.v1.Issuance items = 1;
|
|
384
|
+
*/
|
|
385
|
+
items: Issuance[];
|
|
386
|
+
|
|
387
|
+
/**
|
|
388
|
+
* @generated from field: uint64 total = 2;
|
|
389
|
+
*/
|
|
390
|
+
total: bigint;
|
|
391
|
+
};
|
|
392
|
+
|
|
393
|
+
/**
|
|
394
|
+
* Describes the message admin.inventory.v1.ListIssuancesByItemResponse.
|
|
395
|
+
* Use `create(ListIssuancesByItemResponseSchema)` to create a new message.
|
|
396
|
+
*/
|
|
397
|
+
export declare const ListIssuancesByItemResponseSchema: GenMessage<ListIssuancesByItemResponse>;
|
|
398
|
+
|
|
399
|
+
/**
|
|
400
|
+
* @generated from message admin.inventory.v1.SetItemExpirationDateRequest
|
|
401
|
+
*/
|
|
402
|
+
export declare type SetItemExpirationDateRequest = Message<"admin.inventory.v1.SetItemExpirationDateRequest"> & {
|
|
403
|
+
/**
|
|
404
|
+
* @generated from field: uint64 item_id = 1;
|
|
405
|
+
*/
|
|
406
|
+
itemId: bigint;
|
|
407
|
+
|
|
408
|
+
/**
|
|
409
|
+
* @generated from field: google.protobuf.Timestamp cutoff = 2;
|
|
410
|
+
*/
|
|
411
|
+
cutoff?: Timestamp;
|
|
412
|
+
};
|
|
413
|
+
|
|
414
|
+
/**
|
|
415
|
+
* Describes the message admin.inventory.v1.SetItemExpirationDateRequest.
|
|
416
|
+
* Use `create(SetItemExpirationDateRequestSchema)` to create a new message.
|
|
417
|
+
*/
|
|
418
|
+
export declare const SetItemExpirationDateRequestSchema: GenMessage<SetItemExpirationDateRequest>;
|
|
419
|
+
|
|
420
|
+
/**
|
|
421
|
+
* @generated from message admin.inventory.v1.SetItemExpirationDateResponse
|
|
422
|
+
*/
|
|
423
|
+
export declare type SetItemExpirationDateResponse = Message<"admin.inventory.v1.SetItemExpirationDateResponse"> & {
|
|
424
|
+
};
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* Describes the message admin.inventory.v1.SetItemExpirationDateResponse.
|
|
428
|
+
* Use `create(SetItemExpirationDateResponseSchema)` to create a new message.
|
|
429
|
+
*/
|
|
430
|
+
export declare const SetItemExpirationDateResponseSchema: GenMessage<SetItemExpirationDateResponse>;
|
|
431
|
+
|
|
432
|
+
/**
|
|
433
|
+
* @generated from message admin.inventory.v1.ResetItemCategoryLimitRequest
|
|
434
|
+
*/
|
|
435
|
+
export declare type ResetItemCategoryLimitRequest = Message<"admin.inventory.v1.ResetItemCategoryLimitRequest"> & {
|
|
436
|
+
/**
|
|
437
|
+
* @generated from field: uint64 item_id = 1;
|
|
438
|
+
*/
|
|
439
|
+
itemId: bigint;
|
|
440
|
+
|
|
441
|
+
/**
|
|
442
|
+
* @generated from field: uint64 category_id = 2;
|
|
443
|
+
*/
|
|
444
|
+
categoryId: bigint;
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* @generated from field: uint64 new_limit = 3;
|
|
448
|
+
*/
|
|
449
|
+
newLimit: bigint;
|
|
450
|
+
|
|
451
|
+
/**
|
|
452
|
+
* @generated from field: google.protobuf.Timestamp cutoff = 4;
|
|
453
|
+
*/
|
|
454
|
+
cutoff?: Timestamp;
|
|
455
|
+
};
|
|
456
|
+
|
|
457
|
+
/**
|
|
458
|
+
* Describes the message admin.inventory.v1.ResetItemCategoryLimitRequest.
|
|
459
|
+
* Use `create(ResetItemCategoryLimitRequestSchema)` to create a new message.
|
|
460
|
+
*/
|
|
461
|
+
export declare const ResetItemCategoryLimitRequestSchema: GenMessage<ResetItemCategoryLimitRequest>;
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* @generated from message admin.inventory.v1.ResetItemCategoryLimitResponse
|
|
465
|
+
*/
|
|
466
|
+
export declare type ResetItemCategoryLimitResponse = Message<"admin.inventory.v1.ResetItemCategoryLimitResponse"> & {
|
|
467
|
+
};
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* Describes the message admin.inventory.v1.ResetItemCategoryLimitResponse.
|
|
471
|
+
* Use `create(ResetItemCategoryLimitResponseSchema)` to create a new message.
|
|
472
|
+
*/
|
|
473
|
+
export declare const ResetItemCategoryLimitResponseSchema: GenMessage<ResetItemCategoryLimitResponse>;
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* @generated from enum admin.inventory.v1.ItemStatus
|
|
477
|
+
*/
|
|
478
|
+
export enum ItemStatus {
|
|
479
|
+
/**
|
|
480
|
+
* @generated from enum value: ITEM_STATUS_UNSPECIFIED = 0;
|
|
481
|
+
*/
|
|
482
|
+
UNSPECIFIED = 0,
|
|
483
|
+
|
|
484
|
+
/**
|
|
485
|
+
* @generated from enum value: ITEM_STATUS_AVAILABLE = 1;
|
|
486
|
+
*/
|
|
487
|
+
AVAILABLE = 1,
|
|
488
|
+
|
|
489
|
+
/**
|
|
490
|
+
* @generated from enum value: ITEM_STATUS_INVALID = 2;
|
|
491
|
+
*/
|
|
492
|
+
INVALID = 2,
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
/**
|
|
496
|
+
* Describes the enum admin.inventory.v1.ItemStatus.
|
|
497
|
+
*/
|
|
498
|
+
export declare const ItemStatusSchema: GenEnum<ItemStatus>;
|
|
499
|
+
|
|
500
|
+
/**
|
|
501
|
+
* @generated from service admin.inventory.v1.InventoryAdminService
|
|
502
|
+
*/
|
|
503
|
+
export declare const InventoryAdminService: GenService<{
|
|
504
|
+
/**
|
|
505
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.CreateItem
|
|
506
|
+
*/
|
|
507
|
+
createItem: {
|
|
508
|
+
methodKind: "unary";
|
|
509
|
+
input: typeof CreateItemRequestSchema;
|
|
510
|
+
output: typeof CreateItemResponseSchema;
|
|
511
|
+
},
|
|
512
|
+
/**
|
|
513
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.UpdateItem
|
|
514
|
+
*/
|
|
515
|
+
updateItem: {
|
|
516
|
+
methodKind: "unary";
|
|
517
|
+
input: typeof UpdateItemRequestSchema;
|
|
518
|
+
output: typeof UpdateItemResponseSchema;
|
|
519
|
+
},
|
|
520
|
+
/**
|
|
521
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.GetItem
|
|
522
|
+
*/
|
|
523
|
+
getItem: {
|
|
524
|
+
methodKind: "unary";
|
|
525
|
+
input: typeof GetItemRequestSchema;
|
|
526
|
+
output: typeof GetItemResponseSchema;
|
|
527
|
+
},
|
|
528
|
+
/**
|
|
529
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.ListItems
|
|
530
|
+
*/
|
|
531
|
+
listItems: {
|
|
532
|
+
methodKind: "unary";
|
|
533
|
+
input: typeof ListItemsRequestSchema;
|
|
534
|
+
output: typeof ListItemsResponseSchema;
|
|
535
|
+
},
|
|
536
|
+
/**
|
|
537
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.InvalidateItem
|
|
538
|
+
*/
|
|
539
|
+
invalidateItem: {
|
|
540
|
+
methodKind: "unary";
|
|
541
|
+
input: typeof InvalidateItemRequestSchema;
|
|
542
|
+
output: typeof InvalidateItemResponseSchema;
|
|
543
|
+
},
|
|
544
|
+
/**
|
|
545
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.ListIssuancesByItem
|
|
546
|
+
*/
|
|
547
|
+
listIssuancesByItem: {
|
|
548
|
+
methodKind: "unary";
|
|
549
|
+
input: typeof ListIssuancesByItemRequestSchema;
|
|
550
|
+
output: typeof ListIssuancesByItemResponseSchema;
|
|
551
|
+
},
|
|
552
|
+
/**
|
|
553
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.ResetItemCategoryLimit
|
|
554
|
+
*/
|
|
555
|
+
resetItemCategoryLimit: {
|
|
556
|
+
methodKind: "unary";
|
|
557
|
+
input: typeof ResetItemCategoryLimitRequestSchema;
|
|
558
|
+
output: typeof ResetItemCategoryLimitResponseSchema;
|
|
559
|
+
},
|
|
560
|
+
/**
|
|
561
|
+
* @generated from rpc admin.inventory.v1.InventoryAdminService.SetItemExpirationDate
|
|
562
|
+
*/
|
|
563
|
+
setItemExpirationDate: {
|
|
564
|
+
methodKind: "unary";
|
|
565
|
+
input: typeof SetItemExpirationDateRequestSchema;
|
|
566
|
+
output: typeof SetItemExpirationDateResponseSchema;
|
|
567
|
+
},
|
|
568
|
+
}>;
|
|
569
|
+
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.11.0
|
|
2
|
+
// @generated from file admin/inventory/v1/service.proto (package admin.inventory.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { enumDesc, fileDesc, messageDesc, serviceDesc, tsEnum } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_google_api_annotations } from "../../../google/api/annotations_pb";
|
|
7
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file admin/inventory/v1/service.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_admin_inventory_v1_service = /*@__PURE__*/
|
|
13
|
+
fileDesc("CiBhZG1pbi9pbnZlbnRvcnkvdjEvc2VydmljZS5wcm90bxISYWRtaW4uaW52ZW50b3J5LnYxIikKCUl0ZW1GaWVsZBINCgV0aXRsZRgBIAEoCRINCgV2YWx1ZRgCIAEoCSKMAgoESXRlbRIPCgdpdGVtX2lkGAEgASgEEhIKCnZhcmlhbnRfaWQYAiABKAQSDwoHY29tbWVudBgDIAEoCRIuCgZzdGF0dXMYBCABKA4yHi5hZG1pbi5pbnZlbnRvcnkudjEuSXRlbVN0YXR1cxItCgZmaWVsZHMYBSADKAsyHS5hZG1pbi5pbnZlbnRvcnkudjEuSXRlbUZpZWxkEg8KB3ZlcnNpb24YBiABKA0SLgoKY3JlYXRlZF9hdBgHIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLgoKdXBkYXRlZF9hdBgIIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAi1QIKCElzc3VhbmNlEhMKC2lzc3VhbmNlX2lkGAEgASgEEg8KB2l0ZW1faWQYAiABKAQSEAoIb3JkZXJfaWQYAyABKAQSEAoIYnV5ZXJfaWQYBCABKAQSGAoLY2F0ZWdvcnlfaWQYBSABKARIAIgBARItCglpc3N1ZWRfYXQYBiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEi4KCmV4cGlyZXNfYXQYByABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjQKC3JlbGVhc2VkX2F0GAggASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgBiAEBEhwKD3JlbGVhc2VkX3JlYXNvbhgJIAEoCUgCiAEBQg4KDF9jYXRlZ29yeV9pZEIOCgxfcmVsZWFzZWRfYXRCEgoQX3JlbGVhc2VkX3JlYXNvbiJnChFDcmVhdGVJdGVtUmVxdWVzdBISCgp2YXJpYW50X2lkGAEgASgEEg8KB2NvbW1lbnQYAiABKAkSLQoGZmllbGRzGAMgAygLMh0uYWRtaW4uaW52ZW50b3J5LnYxLkl0ZW1GaWVsZCI8ChJDcmVhdGVJdGVtUmVzcG9uc2USJgoEaXRlbRgBIAEoCzIYLmFkbWluLmludmVudG9yeS52MS5JdGVtIrUBChFVcGRhdGVJdGVtUmVxdWVzdBIPCgdpdGVtX2lkGAEgASgEEhQKB2NvbW1lbnQYAiABKAlIAIgBARIzCgZzdGF0dXMYAyABKA4yHi5hZG1pbi5pbnZlbnRvcnkudjEuSXRlbVN0YXR1c0gBiAEBEi0KBmZpZWxkcxgEIAMoCzIdLmFkbWluLmludmVudG9yeS52MS5JdGVtRmllbGRCCgoIX2NvbW1lbnRCCQoHX3N0YXR1cyI8ChJVcGRhdGVJdGVtUmVzcG9uc2USJgoEaXRlbRgBIAEoCzIYLmFkbWluLmludmVudG9yeS52MS5JdGVtIiEKDkdldEl0ZW1SZXF1ZXN0Eg8KB2l0ZW1faWQYASABKAQiOQoPR2V0SXRlbVJlc3BvbnNlEiYKBGl0ZW0YASABKAsyGC5hZG1pbi5pbnZlbnRvcnkudjEuSXRlbSK5AQoQTGlzdEl0ZW1zUmVxdWVzdBIXCgp2YXJpYW50X2lkGAEgASgESACIAQESMwoGc3RhdHVzGAIgASgOMh4uYWRtaW4uaW52ZW50b3J5LnYxLkl0ZW1TdGF0dXNIAYgBARITCgZzZWFyY2gYAyABKAlIAogBARINCgVsaW1pdBgEIAEoDRIOCgZvZmZzZXQYBSABKARCDQoLX3ZhcmlhbnRfaWRCCQoHX3N0YXR1c0IJCgdfc2VhcmNoIksKEUxpc3RJdGVtc1Jlc3BvbnNlEicKBWl0ZW1zGAEgAygLMhguYWRtaW4uaW52ZW50b3J5LnYxLkl0ZW0SDQoFdG90YWwYAiABKAQiKAoVSW52YWxpZGF0ZUl0ZW1SZXF1ZXN0Eg8KB2l0ZW1faWQYASABKAQiGAoWSW52YWxpZGF0ZUl0ZW1SZXNwb25zZSJMChpMaXN0SXNzdWFuY2VzQnlJdGVtUmVxdWVzdBIPCgdpdGVtX2lkGAEgASgEEg0KBWxpbWl0GAIgASgNEg4KBm9mZnNldBgDIAEoBCJZChtMaXN0SXNzdWFuY2VzQnlJdGVtUmVzcG9uc2USKwoFaXRlbXMYASADKAsyHC5hZG1pbi5pbnZlbnRvcnkudjEuSXNzdWFuY2USDQoFdG90YWwYAiABKAQiWwocU2V0SXRlbUV4cGlyYXRpb25EYXRlUmVxdWVzdBIPCgdpdGVtX2lkGAEgASgEEioKBmN1dG9mZhgCIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiHwodU2V0SXRlbUV4cGlyYXRpb25EYXRlUmVzcG9uc2UihAEKHVJlc2V0SXRlbUNhdGVnb3J5TGltaXRSZXF1ZXN0Eg8KB2l0ZW1faWQYASABKAQSEwoLY2F0ZWdvcnlfaWQYAiABKAQSEQoJbmV3X2xpbWl0GAMgASgEEioKBmN1dG9mZhgEIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiIAoeUmVzZXRJdGVtQ2F0ZWdvcnlMaW1pdFJlc3BvbnNlKl0KCkl0ZW1TdGF0dXMSGwoXSVRFTV9TVEFUVVNfVU5TUEVDSUZJRUQQABIZChVJVEVNX1NUQVRVU19BVkFJTEFCTEUQARIXChNJVEVNX1NUQVRVU19JTlZBTElEEAIywAkKFUludmVudG9yeUFkbWluU2VydmljZRJ3CgpDcmVhdGVJdGVtEiUuYWRtaW4uaW52ZW50b3J5LnYxLkNyZWF0ZUl0ZW1SZXF1ZXN0GiYuYWRtaW4uaW52ZW50b3J5LnYxLkNyZWF0ZUl0ZW1SZXNwb25zZSIagtPkkwIUOgEqIg8vYWRtaW4vdjEvaXRlbXMSgQEKClVwZGF0ZUl0ZW0SJS5hZG1pbi5pbnZlbnRvcnkudjEuVXBkYXRlSXRlbVJlcXVlc3QaJi5hZG1pbi5pbnZlbnRvcnkudjEuVXBkYXRlSXRlbVJlc3BvbnNlIiSC0+STAh46ASoyGS9hZG1pbi92MS9pdGVtcy97aXRlbV9pZH0SdQoHR2V0SXRlbRIiLmFkbWluLmludmVudG9yeS52MS5HZXRJdGVtUmVxdWVzdBojLmFkbWluLmludmVudG9yeS52MS5HZXRJdGVtUmVzcG9uc2UiIYLT5JMCGxIZL2FkbWluL3YxL2l0ZW1zL3tpdGVtX2lkfRJxCglMaXN0SXRlbXMSJC5hZG1pbi5pbnZlbnRvcnkudjEuTGlzdEl0ZW1zUmVxdWVzdBolLmFkbWluLmludmVudG9yeS52MS5MaXN0SXRlbXNSZXNwb25zZSIXgtPkkwIREg8vYWRtaW4vdjEvaXRlbXMSmAEKDkludmFsaWRhdGVJdGVtEikuYWRtaW4uaW52ZW50b3J5LnYxLkludmFsaWRhdGVJdGVtUmVxdWVzdBoqLmFkbWluLmludmVudG9yeS52MS5JbnZhbGlkYXRlSXRlbVJlc3BvbnNlIi+C0+STAik6ASoiJC9hZG1pbi92MS9pdGVtcy97aXRlbV9pZH0vaW52YWxpZGF0ZRKjAQoTTGlzdElzc3VhbmNlc0J5SXRlbRIuLmFkbWluLmludmVudG9yeS52MS5MaXN0SXNzdWFuY2VzQnlJdGVtUmVxdWVzdBovLmFkbWluLmludmVudG9yeS52MS5MaXN0SXNzdWFuY2VzQnlJdGVtUmVzcG9uc2UiK4LT5JMCJRIjL2FkbWluL3YxL2l0ZW1zL3tpdGVtX2lkfS9pc3N1YW5jZXMSygEKFlJlc2V0SXRlbUNhdGVnb3J5TGltaXQSMS5hZG1pbi5pbnZlbnRvcnkudjEuUmVzZXRJdGVtQ2F0ZWdvcnlMaW1pdFJlcXVlc3QaMi5hZG1pbi5pbnZlbnRvcnkudjEuUmVzZXRJdGVtQ2F0ZWdvcnlMaW1pdFJlc3BvbnNlIkmC0+STAkM6ASoiPi9hZG1pbi92MS9pdGVtcy97aXRlbV9pZH0vY2F0ZWdvcmllcy97Y2F0ZWdvcnlfaWR9L3Jlc2V0LWxpbWl0ErEBChVTZXRJdGVtRXhwaXJhdGlvbkRhdGUSMC5hZG1pbi5pbnZlbnRvcnkudjEuU2V0SXRlbUV4cGlyYXRpb25EYXRlUmVxdWVzdBoxLmFkbWluLmludmVudG9yeS52MS5TZXRJdGVtRXhwaXJhdGlvbkRhdGVSZXNwb25zZSIzgtPkkwItOgEqIigvYWRtaW4vdjEvaXRlbXMve2l0ZW1faWR9L3NldC1leHBpcmF0aW9uQkZaRGdpdGh1Yi5jb20vRzJHcy9hcGktY29udHJhY3RzLWdvL2FkbWluL2ludmVudG9yeS92MTthZG1pbmludmVudG9yeXYxYgZwcm90bzM", [file_google_api_annotations, file_google_protobuf_timestamp]);
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message admin.inventory.v1.ItemField.
|
|
17
|
+
* Use `create(ItemFieldSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
export const ItemFieldSchema = /*@__PURE__*/
|
|
20
|
+
messageDesc(file_admin_inventory_v1_service, 0);
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Describes the message admin.inventory.v1.Item.
|
|
24
|
+
* Use `create(ItemSchema)` to create a new message.
|
|
25
|
+
*/
|
|
26
|
+
export const ItemSchema = /*@__PURE__*/
|
|
27
|
+
messageDesc(file_admin_inventory_v1_service, 1);
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Describes the message admin.inventory.v1.Issuance.
|
|
31
|
+
* Use `create(IssuanceSchema)` to create a new message.
|
|
32
|
+
*/
|
|
33
|
+
export const IssuanceSchema = /*@__PURE__*/
|
|
34
|
+
messageDesc(file_admin_inventory_v1_service, 2);
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Describes the message admin.inventory.v1.CreateItemRequest.
|
|
38
|
+
* Use `create(CreateItemRequestSchema)` to create a new message.
|
|
39
|
+
*/
|
|
40
|
+
export const CreateItemRequestSchema = /*@__PURE__*/
|
|
41
|
+
messageDesc(file_admin_inventory_v1_service, 3);
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* Describes the message admin.inventory.v1.CreateItemResponse.
|
|
45
|
+
* Use `create(CreateItemResponseSchema)` to create a new message.
|
|
46
|
+
*/
|
|
47
|
+
export const CreateItemResponseSchema = /*@__PURE__*/
|
|
48
|
+
messageDesc(file_admin_inventory_v1_service, 4);
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Describes the message admin.inventory.v1.UpdateItemRequest.
|
|
52
|
+
* Use `create(UpdateItemRequestSchema)` to create a new message.
|
|
53
|
+
*/
|
|
54
|
+
export const UpdateItemRequestSchema = /*@__PURE__*/
|
|
55
|
+
messageDesc(file_admin_inventory_v1_service, 5);
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Describes the message admin.inventory.v1.UpdateItemResponse.
|
|
59
|
+
* Use `create(UpdateItemResponseSchema)` to create a new message.
|
|
60
|
+
*/
|
|
61
|
+
export const UpdateItemResponseSchema = /*@__PURE__*/
|
|
62
|
+
messageDesc(file_admin_inventory_v1_service, 6);
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Describes the message admin.inventory.v1.GetItemRequest.
|
|
66
|
+
* Use `create(GetItemRequestSchema)` to create a new message.
|
|
67
|
+
*/
|
|
68
|
+
export const GetItemRequestSchema = /*@__PURE__*/
|
|
69
|
+
messageDesc(file_admin_inventory_v1_service, 7);
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Describes the message admin.inventory.v1.GetItemResponse.
|
|
73
|
+
* Use `create(GetItemResponseSchema)` to create a new message.
|
|
74
|
+
*/
|
|
75
|
+
export const GetItemResponseSchema = /*@__PURE__*/
|
|
76
|
+
messageDesc(file_admin_inventory_v1_service, 8);
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Describes the message admin.inventory.v1.ListItemsRequest.
|
|
80
|
+
* Use `create(ListItemsRequestSchema)` to create a new message.
|
|
81
|
+
*/
|
|
82
|
+
export const ListItemsRequestSchema = /*@__PURE__*/
|
|
83
|
+
messageDesc(file_admin_inventory_v1_service, 9);
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Describes the message admin.inventory.v1.ListItemsResponse.
|
|
87
|
+
* Use `create(ListItemsResponseSchema)` to create a new message.
|
|
88
|
+
*/
|
|
89
|
+
export const ListItemsResponseSchema = /*@__PURE__*/
|
|
90
|
+
messageDesc(file_admin_inventory_v1_service, 10);
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* Describes the message admin.inventory.v1.InvalidateItemRequest.
|
|
94
|
+
* Use `create(InvalidateItemRequestSchema)` to create a new message.
|
|
95
|
+
*/
|
|
96
|
+
export const InvalidateItemRequestSchema = /*@__PURE__*/
|
|
97
|
+
messageDesc(file_admin_inventory_v1_service, 11);
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Describes the message admin.inventory.v1.InvalidateItemResponse.
|
|
101
|
+
* Use `create(InvalidateItemResponseSchema)` to create a new message.
|
|
102
|
+
*/
|
|
103
|
+
export const InvalidateItemResponseSchema = /*@__PURE__*/
|
|
104
|
+
messageDesc(file_admin_inventory_v1_service, 12);
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* Describes the message admin.inventory.v1.ListIssuancesByItemRequest.
|
|
108
|
+
* Use `create(ListIssuancesByItemRequestSchema)` to create a new message.
|
|
109
|
+
*/
|
|
110
|
+
export const ListIssuancesByItemRequestSchema = /*@__PURE__*/
|
|
111
|
+
messageDesc(file_admin_inventory_v1_service, 13);
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* Describes the message admin.inventory.v1.ListIssuancesByItemResponse.
|
|
115
|
+
* Use `create(ListIssuancesByItemResponseSchema)` to create a new message.
|
|
116
|
+
*/
|
|
117
|
+
export const ListIssuancesByItemResponseSchema = /*@__PURE__*/
|
|
118
|
+
messageDesc(file_admin_inventory_v1_service, 14);
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Describes the message admin.inventory.v1.SetItemExpirationDateRequest.
|
|
122
|
+
* Use `create(SetItemExpirationDateRequestSchema)` to create a new message.
|
|
123
|
+
*/
|
|
124
|
+
export const SetItemExpirationDateRequestSchema = /*@__PURE__*/
|
|
125
|
+
messageDesc(file_admin_inventory_v1_service, 15);
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* Describes the message admin.inventory.v1.SetItemExpirationDateResponse.
|
|
129
|
+
* Use `create(SetItemExpirationDateResponseSchema)` to create a new message.
|
|
130
|
+
*/
|
|
131
|
+
export const SetItemExpirationDateResponseSchema = /*@__PURE__*/
|
|
132
|
+
messageDesc(file_admin_inventory_v1_service, 16);
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* Describes the message admin.inventory.v1.ResetItemCategoryLimitRequest.
|
|
136
|
+
* Use `create(ResetItemCategoryLimitRequestSchema)` to create a new message.
|
|
137
|
+
*/
|
|
138
|
+
export const ResetItemCategoryLimitRequestSchema = /*@__PURE__*/
|
|
139
|
+
messageDesc(file_admin_inventory_v1_service, 17);
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* Describes the message admin.inventory.v1.ResetItemCategoryLimitResponse.
|
|
143
|
+
* Use `create(ResetItemCategoryLimitResponseSchema)` to create a new message.
|
|
144
|
+
*/
|
|
145
|
+
export const ResetItemCategoryLimitResponseSchema = /*@__PURE__*/
|
|
146
|
+
messageDesc(file_admin_inventory_v1_service, 18);
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Describes the enum admin.inventory.v1.ItemStatus.
|
|
150
|
+
*/
|
|
151
|
+
export const ItemStatusSchema = /*@__PURE__*/
|
|
152
|
+
enumDesc(file_admin_inventory_v1_service, 0);
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* @generated from enum admin.inventory.v1.ItemStatus
|
|
156
|
+
*/
|
|
157
|
+
export const ItemStatus = /*@__PURE__*/
|
|
158
|
+
tsEnum(ItemStatusSchema);
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* @generated from service admin.inventory.v1.InventoryAdminService
|
|
162
|
+
*/
|
|
163
|
+
export const InventoryAdminService = /*@__PURE__*/
|
|
164
|
+
serviceDesc(file_admin_inventory_v1_service, 0);
|
|
165
|
+
|
|
@@ -127,6 +127,11 @@ export declare type Variant = Message<"admin.product.v1.Variant"> & {
|
|
|
127
127
|
* @generated from field: optional uint64 limit_policy_id = 9;
|
|
128
128
|
*/
|
|
129
129
|
limitPolicyId?: bigint;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* @generated from field: uint64 issuance_ttl_seconds = 10;
|
|
133
|
+
*/
|
|
134
|
+
issuanceTtlSeconds: bigint;
|
|
130
135
|
};
|
|
131
136
|
|
|
132
137
|
/**
|
|
@@ -140,12 +145,17 @@ export declare const VariantSchema: GenMessage<Variant>;
|
|
|
140
145
|
*/
|
|
141
146
|
export declare type LimitPolicyGroup = Message<"admin.product.v1.LimitPolicyGroup"> & {
|
|
142
147
|
/**
|
|
143
|
-
* @generated from field:
|
|
148
|
+
* @generated from field: uint64 id = 1;
|
|
149
|
+
*/
|
|
150
|
+
id: bigint;
|
|
151
|
+
|
|
152
|
+
/**
|
|
153
|
+
* @generated from field: string title = 2;
|
|
144
154
|
*/
|
|
145
155
|
title: string;
|
|
146
156
|
|
|
147
157
|
/**
|
|
148
|
-
* @generated from field: uint64 limit =
|
|
158
|
+
* @generated from field: uint64 limit = 3;
|
|
149
159
|
*/
|
|
150
160
|
limit: bigint;
|
|
151
161
|
};
|
|
@@ -296,6 +306,11 @@ export declare type CreateVariantCmd = Message<"admin.product.v1.CreateVariantCm
|
|
|
296
306
|
* @generated from field: optional admin.product.v1.LimitPolicyCmd limit_policy = 8;
|
|
297
307
|
*/
|
|
298
308
|
limitPolicy?: LimitPolicyCmd;
|
|
309
|
+
|
|
310
|
+
/**
|
|
311
|
+
* @generated from field: uint64 issuance_ttl_seconds = 9;
|
|
312
|
+
*/
|
|
313
|
+
issuanceTtlSeconds: bigint;
|
|
299
314
|
};
|
|
300
315
|
|
|
301
316
|
/**
|
|
@@ -748,6 +763,11 @@ export declare type UpdateVariantRequest = Message<"admin.product.v1.UpdateVaria
|
|
|
748
763
|
* @generated from field: optional uint64 pinned_template_version_id = 10;
|
|
749
764
|
*/
|
|
750
765
|
pinnedTemplateVersionId?: bigint;
|
|
766
|
+
|
|
767
|
+
/**
|
|
768
|
+
* @generated from field: optional uint64 issuance_ttl_seconds = 11;
|
|
769
|
+
*/
|
|
770
|
+
issuanceTtlSeconds?: bigint;
|
|
751
771
|
};
|
|
752
772
|
|
|
753
773
|
/**
|
|
@@ -10,7 +10,7 @@ import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
|
10
10
|
* Describes the file admin/product/v1/service.proto.
|
|
11
11
|
*/
|
|
12
12
|
export const file_admin_product_v1_service = /*@__PURE__*/
|
|
13
|
-
fileDesc("
|
|
13
|
+
fileDesc("Ch5hZG1pbi9wcm9kdWN0L3YxL3NlcnZpY2UucHJvdG8SEGFkbWluLnByb2R1Y3QudjEiSwoFTW9uZXkSFAoMYW1vdW50X21pbm9yGAEgASgDEiwKCGN1cnJlbmN5GAIgASgOMhouYWRtaW4ucHJvZHVjdC52MS5DdXJyZW5jeSKzAQoFUHJpY2USJgoFdmFsdWUYASABKAsyFy5hZG1pbi5wcm9kdWN0LnYxLk1vbmV5EjMKCnZhbGlkX2Zyb20YAiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSACIAQESMQoIdmFsaWRfdG8YAyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSAGIAQFCDQoLX3ZhbGlkX2Zyb21CCwoJX3ZhbGlkX3RvImcKB1ByaWNpbmcSJQoEYmFzZRgBIAEoCzIXLmFkbWluLnByb2R1Y3QudjEuUHJpY2USKwoFcHJvbW8YAiABKAsyFy5hZG1pbi5wcm9kdWN0LnYxLlByaWNlSACIAQFCCAoGX3Byb21vIssCCgdWYXJpYW50EhIKCnZhcmlhbnRfaWQYASABKAQSCwoDc2t1GAIgASgJEg0KBXRpdGxlGAMgASgJEhEKCWlzX2FjdGl2ZRgEIAEoCBIqCgdwcmljaW5nGAUgASgLMhkuYWRtaW4ucHJvZHVjdC52MS5QcmljaW5nEg8KB3ZlcnNpb24YBiABKA0SGAoLdGVtcGxhdGVfaWQYByABKARIAIgBARInChpwaW5uZWRfdGVtcGxhdGVfdmVyc2lvbl9pZBgIIAEoBEgBiAEBEhwKD2xpbWl0X3BvbGljeV9pZBgJIAEoBEgCiAEBEhwKFGlzc3VhbmNlX3R0bF9zZWNvbmRzGAogASgEQg4KDF90ZW1wbGF0ZV9pZEIdChtfcGlubmVkX3RlbXBsYXRlX3ZlcnNpb25faWRCEgoQX2xpbWl0X3BvbGljeV9pZCI8ChBMaW1pdFBvbGljeUdyb3VwEgoKAmlkGAEgASgEEg0KBXRpdGxlGAIgASgJEg0KBWxpbWl0GAMgASgEItQBCgtMaW1pdFBvbGljeRIRCglwb2xpY3lfaWQYASABKAQSEgoKdmFyaWFudF9pZBgCIAEoBBIvCgR0eXBlGAMgASgOMiEuYWRtaW4ucHJvZHVjdC52MS5MaW1pdFBvbGljeVR5cGUSGAoLdG90YWxfbGltaXQYBCABKARIAIgBARIyCgZncm91cHMYBSADKAsyIi5hZG1pbi5wcm9kdWN0LnYxLkxpbWl0UG9saWN5R3JvdXASDwoHdmVyc2lvbhgGIAEoDUIOCgxfdG90YWxfbGltaXQiugIKB1Byb2R1Y3QSEgoKcHJvZHVjdF9pZBgBIAEoBBINCgV0aXRsZRgCIAEoCRITCgtkZXNjcmlwdGlvbhgDIAEoCRIvCgZzdGF0dXMYBCABKA4yHy5hZG1pbi5wcm9kdWN0LnYxLlByb2R1Y3RTdGF0dXMSGAoLY2F0ZWdvcnlfaWQYBSABKARIAIgBARIrCgh2YXJpYW50cxgJIAMoCzIZLmFkbWluLnByb2R1Y3QudjEuVmFyaWFudBIPCgd2ZXJzaW9uGAogASgNEi4KCmNyZWF0ZWRfYXQYCyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEi4KCnVwZGF0ZWRfYXQYDCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wQg4KDF9jYXRlZ29yeV9pZCKPAwoQQ3JlYXRlVmFyaWFudENtZBILCgNza3UYASABKAkSDQoFdGl0bGUYAiABKAkSGQoRYmFzZV9hbW91bnRfbWlub3IYAyABKAMSLAoIY3VycmVuY3kYBCABKA4yGi5hZG1pbi5wcm9kdWN0LnYxLkN1cnJlbmN5Ei4KBXByb21vGAUgASgLMhouYWRtaW4ucHJvZHVjdC52MS5Qcm9tb0NtZEgAiAEBEhgKC3RlbXBsYXRlX2lkGAYgASgESAGIAQESJwoacGlubmVkX3RlbXBsYXRlX3ZlcnNpb25faWQYByABKARIAogBARI7CgxsaW1pdF9wb2xpY3kYCCABKAsyIC5hZG1pbi5wcm9kdWN0LnYxLkxpbWl0UG9saWN5Q21kSAOIAQESHAoUaXNzdWFuY2VfdHRsX3NlY29uZHMYCSABKARCCAoGX3Byb21vQg4KDF90ZW1wbGF0ZV9pZEIdChtfcGlubmVkX3RlbXBsYXRlX3ZlcnNpb25faWRCDwoNX2xpbWl0X3BvbGljeSKkAQoIUHJvbW9DbWQSFAoMYW1vdW50X21pbm9yGAEgASgDEjMKCnZhbGlkX2Zyb20YAiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSACIAQESMQoIdmFsaWRfdG8YAyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSAGIAQFCDQoLX3ZhbGlkX2Zyb21CCwoJX3ZhbGlkX3RvIp8BCg5MaW1pdFBvbGljeUNtZBIvCgR0eXBlGAEgASgOMiEuYWRtaW4ucHJvZHVjdC52MS5MaW1pdFBvbGljeVR5cGUSGAoLdG90YWxfbGltaXQYAiABKARIAIgBARIyCgZncm91cHMYAyADKAsyIi5hZG1pbi5wcm9kdWN0LnYxLkxpbWl0UG9saWN5R3JvdXBCDgoMX3RvdGFsX2xpbWl0IpoBChRDcmVhdGVQcm9kdWN0UmVxdWVzdBINCgV0aXRsZRgBIAEoCRITCgtkZXNjcmlwdGlvbhgCIAEoCRIYCgtjYXRlZ29yeV9pZBgDIAEoBEgAiAEBEjQKCHZhcmlhbnRzGAYgAygLMiIuYWRtaW4ucHJvZHVjdC52MS5DcmVhdGVWYXJpYW50Q21kQg4KDF9jYXRlZ29yeV9pZCJDChVDcmVhdGVQcm9kdWN0UmVzcG9uc2USKgoHcHJvZHVjdBgBIAEoCzIZLmFkbWluLnByb2R1Y3QudjEuUHJvZHVjdCKcAQoUVXBkYXRlUHJvZHVjdFJlcXVlc3QSEgoKcHJvZHVjdF9pZBgBIAEoBBISCgV0aXRsZRgCIAEoCUgAiAEBEhgKC2Rlc2NyaXB0aW9uGAMgASgJSAGIAQESGAoLY2F0ZWdvcnlfaWQYBCABKARIAogBAUIICgZfdGl0bGVCDgoMX2Rlc2NyaXB0aW9uQg4KDF9jYXRlZ29yeV9pZCJDChVVcGRhdGVQcm9kdWN0UmVzcG9uc2USKgoHcHJvZHVjdBgBIAEoCzIZLmFkbWluLnByb2R1Y3QudjEuUHJvZHVjdCInChFHZXRQcm9kdWN0UmVxdWVzdBISCgpwcm9kdWN0X2lkGAEgASgEIkAKEkdldFByb2R1Y3RSZXNwb25zZRIqCgdwcm9kdWN0GAEgASgLMhkuYWRtaW4ucHJvZHVjdC52MS5Qcm9kdWN0ItoCChNMaXN0UHJvZHVjdHNSZXF1ZXN0EhcKCnRpdGxlX2xpa2UYASABKAlIAIgBARIxCghzdGF0dXNlcxgCIAMoDjIfLmFkbWluLnByb2R1Y3QudjEuUHJvZHVjdFN0YXR1cxIYChBpbmNsdWRlX2FyY2hpdmVkGAMgASgIEhgKC2NhdGVnb3J5X2lkGAQgASgESAGIAQESHQoVaW5jbHVkZV9zdWJjYXRlZ29yaWVzGAUgASgIEg0KBWxpbWl0GAYgASgNEg4KBm9mZnNldBgHIAEoBBIzCgdzb3J0X2J5GAggASgOMiIuYWRtaW4ucHJvZHVjdC52MS5Qcm9kdWN0U29ydEZpZWxkEjEKCHNvcnRfZGlyGAkgASgOMh8uYWRtaW4ucHJvZHVjdC52MS5Tb3J0RGlyZWN0aW9uQg0KC190aXRsZV9saWtlQg4KDF9jYXRlZ29yeV9pZCJPChRMaXN0UHJvZHVjdHNSZXNwb25zZRIoCgVpdGVtcxgBIAMoCzIZLmFkbWluLnByb2R1Y3QudjEuUHJvZHVjdBINCgV0b3RhbBgCIAEoBCIsChZBY3RpdmF0ZVByb2R1Y3RSZXF1ZXN0EhIKCnByb2R1Y3RfaWQYASABKAQiRQoXQWN0aXZhdGVQcm9kdWN0UmVzcG9uc2USKgoHcHJvZHVjdBgBIAEoCzIZLmFkbWluLnByb2R1Y3QudjEuUHJvZHVjdCIuChhEZWFjdGl2YXRlUHJvZHVjdFJlcXVlc3QSEgoKcHJvZHVjdF9pZBgBIAEoBCJHChlEZWFjdGl2YXRlUHJvZHVjdFJlc3BvbnNlEioKB3Byb2R1Y3QYASABKAsyGS5hZG1pbi5wcm9kdWN0LnYxLlByb2R1Y3QiKwoVQXJjaGl2ZVByb2R1Y3RSZXF1ZXN0EhIKCnByb2R1Y3RfaWQYASABKAQiGAoWQXJjaGl2ZVByb2R1Y3RSZXNwb25zZSJcChFBZGRWYXJpYW50UmVxdWVzdBISCgpwcm9kdWN0X2lkGAEgASgEEjMKB3ZhcmlhbnQYAiABKAsyIi5hZG1pbi5wcm9kdWN0LnYxLkNyZWF0ZVZhcmlhbnRDbWQiQAoSQWRkVmFyaWFudFJlc3BvbnNlEioKB3Byb2R1Y3QYASABKAsyGS5hZG1pbi5wcm9kdWN0LnYxLlByb2R1Y3Qi9wMKFFVwZGF0ZVZhcmlhbnRSZXF1ZXN0EhIKCnByb2R1Y3RfaWQYASABKAQSCwoDc2t1GAIgASgJEhIKBXRpdGxlGAMgASgJSAGIAQESFgoJaXNfYWN0aXZlGAQgASgISAKIAQESHgoRYmFzZV9hbW91bnRfbWlub3IYBSABKANIA4gBARIxCghjdXJyZW5jeRgGIAEoDjIaLmFkbWluLnByb2R1Y3QudjEuQ3VycmVuY3lIBIgBARIvCglwcm9tb19zZXQYByABKAsyGi5hZG1pbi5wcm9kdWN0LnYxLlByb21vQ21kSAASFQoLcHJvbW9fY2xlYXIYCCABKAhIABIYCgt0ZW1wbGF0ZV9pZBgJIAEoBEgFiAEBEicKGnBpbm5lZF90ZW1wbGF0ZV92ZXJzaW9uX2lkGAogASgESAaIAQESIQoUaXNzdWFuY2VfdHRsX3NlY29uZHMYCyABKARIB4gBAUIOCgxwcm9tb19jaGFuZ2VCCAoGX3RpdGxlQgwKCl9pc19hY3RpdmVCFAoSX2Jhc2VfYW1vdW50X21pbm9yQgsKCV9jdXJyZW5jeUIOCgxfdGVtcGxhdGVfaWRCHQobX3Bpbm5lZF90ZW1wbGF0ZV92ZXJzaW9uX2lkQhcKFV9pc3N1YW5jZV90dGxfc2Vjb25kcyJDChVVcGRhdGVWYXJpYW50UmVzcG9uc2USKgoHcHJvZHVjdBgBIAEoCzIZLmFkbWluLnByb2R1Y3QudjEuUHJvZHVjdCqeAQoNUHJvZHVjdFN0YXR1cxIeChpQUk9EVUNUX1NUQVRVU19VTlNQRUNJRklFRBAAEhgKFFBST0RVQ1RfU1RBVFVTX0RSQUZUEAESGQoVUFJPRFVDVF9TVEFUVVNfQUNUSVZFEAISGwoXUFJPRFVDVF9TVEFUVVNfSU5BQ1RJVkUQAxIbChdQUk9EVUNUX1NUQVRVU19BUkNISVZFRBAEKmAKDVNvcnREaXJlY3Rpb24SHgoaU09SVF9ESVJFQ1RJT05fVU5TUEVDSUZJRUQQABIWChJTT1JUX0RJUkVDVElPTl9BU0MQARIXChNTT1JUX0RJUkVDVElPTl9ERVNDEAIqtQEKEFByb2R1Y3RTb3J0RmllbGQSIgoeUFJPRFVDVF9TT1JUX0ZJRUxEX1VOU1BFQ0lGSUVEEAASGQoVUFJPRFVDVF9TT1JUX0ZJRUxEX0lEEAESHAoYUFJPRFVDVF9TT1JUX0ZJRUxEX1RJVExFEAISIQodUFJPRFVDVF9TT1JUX0ZJRUxEX0NSRUFURURfQVQQAxIhCh1QUk9EVUNUX1NPUlRfRklFTERfVVBEQVRFRF9BVBAEKloKCEN1cnJlbmN5EhgKFENVUlJFTkNZX1VOU1BFQ0lGSUVEEAASEAoMQ1VSUkVOQ1lfUlVCEAESEAoMQ1VSUkVOQ1lfVVNEEAISEAoMQ1VSUkVOQ1lfRVVSEAMqkQEKD0xpbWl0UG9saWN5VHlwZRIhCh1MSU1JVF9QT0xJQ1lfVFlQRV9VTlNQRUNJRklFRBAAEh8KG0xJTUlUX1BPTElDWV9UWVBFX1VOTElNSVRFRBABEhsKF0xJTUlUX1BPTElDWV9UWVBFX1RPVEFMEAISHQoZTElNSVRfUE9MSUNZX1RZUEVfR1JPVVBFRBADMq4KChNQcm9kdWN0QWRtaW5TZXJ2aWNlEn8KDUNyZWF0ZVByb2R1Y3QSJi5hZG1pbi5wcm9kdWN0LnYxLkNyZWF0ZVByb2R1Y3RSZXF1ZXN0GicuYWRtaW4ucHJvZHVjdC52MS5DcmVhdGVQcm9kdWN0UmVzcG9uc2UiHYLT5JMCFzoBKiISL2FkbWluL3YxL3Byb2R1Y3RzEowBCg1VcGRhdGVQcm9kdWN0EiYuYWRtaW4ucHJvZHVjdC52MS5VcGRhdGVQcm9kdWN0UmVxdWVzdBonLmFkbWluLnByb2R1Y3QudjEuVXBkYXRlUHJvZHVjdFJlc3BvbnNlIiqC0+STAiQ6ASoyHy9hZG1pbi92MS9wcm9kdWN0cy97cHJvZHVjdF9pZH0SgAEKCkdldFByb2R1Y3QSIy5hZG1pbi5wcm9kdWN0LnYxLkdldFByb2R1Y3RSZXF1ZXN0GiQuYWRtaW4ucHJvZHVjdC52MS5HZXRQcm9kdWN0UmVzcG9uc2UiJ4LT5JMCIRIfL2FkbWluL3YxL3Byb2R1Y3RzL3twcm9kdWN0X2lkfRJ5CgxMaXN0UHJvZHVjdHMSJS5hZG1pbi5wcm9kdWN0LnYxLkxpc3RQcm9kdWN0c1JlcXVlc3QaJi5hZG1pbi5wcm9kdWN0LnYxLkxpc3RQcm9kdWN0c1Jlc3BvbnNlIhqC0+STAhQSEi9hZG1pbi92MS9wcm9kdWN0cxKbAQoPQWN0aXZhdGVQcm9kdWN0EiguYWRtaW4ucHJvZHVjdC52MS5BY3RpdmF0ZVByb2R1Y3RSZXF1ZXN0GikuYWRtaW4ucHJvZHVjdC52MS5BY3RpdmF0ZVByb2R1Y3RSZXNwb25zZSIzgtPkkwItOgEqIigvYWRtaW4vdjEvcHJvZHVjdHMve3Byb2R1Y3RfaWR9L2FjdGl2YXRlEqMBChFEZWFjdGl2YXRlUHJvZHVjdBIqLmFkbWluLnByb2R1Y3QudjEuRGVhY3RpdmF0ZVByb2R1Y3RSZXF1ZXN0GisuYWRtaW4ucHJvZHVjdC52MS5EZWFjdGl2YXRlUHJvZHVjdFJlc3BvbnNlIjWC0+STAi86ASoiKi9hZG1pbi92MS9wcm9kdWN0cy97cHJvZHVjdF9pZH0vZGVhY3RpdmF0ZRKXAQoOQXJjaGl2ZVByb2R1Y3QSJy5hZG1pbi5wcm9kdWN0LnYxLkFyY2hpdmVQcm9kdWN0UmVxdWVzdBooLmFkbWluLnByb2R1Y3QudjEuQXJjaGl2ZVByb2R1Y3RSZXNwb25zZSIygtPkkwIsOgEqIicvYWRtaW4vdjEvcHJvZHVjdHMve3Byb2R1Y3RfaWR9L2FyY2hpdmUSjAEKCkFkZFZhcmlhbnQSIy5hZG1pbi5wcm9kdWN0LnYxLkFkZFZhcmlhbnRSZXF1ZXN0GiQuYWRtaW4ucHJvZHVjdC52MS5BZGRWYXJpYW50UmVzcG9uc2UiM4LT5JMCLToBKiIoL2FkbWluL3YxL3Byb2R1Y3RzL3twcm9kdWN0X2lkfS92YXJpYW50cxKbAQoNVXBkYXRlVmFyaWFudBImLmFkbWluLnByb2R1Y3QudjEuVXBkYXRlVmFyaWFudFJlcXVlc3QaJy5hZG1pbi5wcm9kdWN0LnYxLlVwZGF0ZVZhcmlhbnRSZXNwb25zZSI5gtPkkwIzOgEqMi4vYWRtaW4vdjEvcHJvZHVjdHMve3Byb2R1Y3RfaWR9L3ZhcmlhbnRzL3tza3V9QkJaQGdpdGh1Yi5jb20vRzJHcy9hcGktY29udHJhY3RzLWdvL2FkbWluL3Byb2R1Y3QvdjE7YWRtaW5wcm9kdWN0djFiBnByb3RvMw", [file_google_api_annotations, file_google_protobuf_timestamp]);
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* Describes the message admin.product.v1.Money.
|