@kernelminds/scailo-sdk 0.1.21 → 0.1.22
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/lib/cjs/src/inventory.scailo_connect.js +4 -4
- package/lib/cjs/src/purchases_enquiries.scailo_connect.js +11 -0
- package/lib/cjs/types/src/inventory.scailo_connect.d.ts +5 -5
- package/lib/cjs/types/src/inventory.scailo_connect.d.ts.map +1 -1
- package/lib/cjs/types/src/purchases_enquiries.scailo_connect.d.ts +12 -1
- package/lib/cjs/types/src/purchases_enquiries.scailo_connect.d.ts.map +1 -1
- package/lib/esm/src/inventory.scailo_connect.js +4 -4
- package/lib/esm/src/purchases_enquiries.scailo_connect.js +11 -0
- package/lib/esm/types/src/inventory.scailo_connect.d.ts +5 -5
- package/lib/esm/types/src/inventory.scailo_connect.d.ts.map +1 -1
- package/lib/esm/types/src/purchases_enquiries.scailo_connect.d.ts +12 -1
- package/lib/esm/types/src/purchases_enquiries.scailo_connect.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -327,7 +327,7 @@ exports.InventoryService = {
|
|
|
327
327
|
updateStorageWithShortURL: {
|
|
328
328
|
name: "UpdateStorageWithShortURL",
|
|
329
329
|
I: inventory_scailo_pb_js_1.InventoryServiceUpdateStorageReq,
|
|
330
|
-
O:
|
|
330
|
+
O: inventory_scailo_pb_js_1.GenericInventory,
|
|
331
331
|
kind: protobuf_1.MethodKind.Unary,
|
|
332
332
|
},
|
|
333
333
|
/**
|
|
@@ -338,7 +338,7 @@ exports.InventoryService = {
|
|
|
338
338
|
updateStorageWithInternalItemCode: {
|
|
339
339
|
name: "UpdateStorageWithInternalItemCode",
|
|
340
340
|
I: inventory_scailo_pb_js_1.InventoryServiceUpdateStorageReq,
|
|
341
|
-
O:
|
|
341
|
+
O: inventory_scailo_pb_js_1.GenericInventory,
|
|
342
342
|
kind: protobuf_1.MethodKind.Unary,
|
|
343
343
|
},
|
|
344
344
|
/**
|
|
@@ -349,7 +349,7 @@ exports.InventoryService = {
|
|
|
349
349
|
moveToStorageWithShortURL: {
|
|
350
350
|
name: "MoveToStorageWithShortURL",
|
|
351
351
|
I: inventory_scailo_pb_js_1.InventoryServiceUpdateStorageReq,
|
|
352
|
-
O:
|
|
352
|
+
O: inventory_scailo_pb_js_1.GenericInventory,
|
|
353
353
|
kind: protobuf_1.MethodKind.Unary,
|
|
354
354
|
},
|
|
355
355
|
/**
|
|
@@ -360,7 +360,7 @@ exports.InventoryService = {
|
|
|
360
360
|
moveToStorageWithInternalItemCode: {
|
|
361
361
|
name: "MoveToStorageWithInternalItemCode",
|
|
362
362
|
I: inventory_scailo_pb_js_1.InventoryServiceUpdateStorageReq,
|
|
363
|
-
O:
|
|
363
|
+
O: inventory_scailo_pb_js_1.GenericInventory,
|
|
364
364
|
kind: protobuf_1.MethodKind.Unary,
|
|
365
365
|
},
|
|
366
366
|
}
|
|
@@ -183,6 +183,17 @@ exports.PurchasesEnquiriesService = {
|
|
|
183
183
|
O: base_scailo_pb_js_1.IdentifierResponse,
|
|
184
184
|
kind: protobuf_1.MethodKind.Unary,
|
|
185
185
|
},
|
|
186
|
+
/**
|
|
187
|
+
* Send Email
|
|
188
|
+
*
|
|
189
|
+
* @generated from rpc Scailo.PurchasesEnquiriesService.SendEmail
|
|
190
|
+
*/
|
|
191
|
+
sendEmail: {
|
|
192
|
+
name: "SendEmail",
|
|
193
|
+
I: base_scailo_pb_js_1.IdentifierWithEmailAttributes,
|
|
194
|
+
O: base_scailo_pb_js_1.IdentifierResponse,
|
|
195
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
196
|
+
},
|
|
186
197
|
/**
|
|
187
198
|
* Create a magic link
|
|
188
199
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ConsolidatedInventoryStatistics, ConsolidatedInventoryStatisticsList, GenericInventory, GenericInventoryList, InventoryDetailedDemand, InventoryHashSearchReq, InventoryIndentedStatistics, InventoryOrderedStatistics, InventoryServiceFamilyQuantityReq, InventoryServiceUpdateStorageReq, InventoryWorkInProgressStatistics, IssuableInventorySearchReq, ReturnableInventorySearchReq } from "./inventory.scailo_pb.js";
|
|
2
2
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
3
|
-
import { Identifier,
|
|
3
|
+
import { Identifier, IdentifiersList, QuantityResponse, SimpleSearchReq } from "./base.scailo_pb.js";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
6
6
|
* Describes the common methods applicable on inventory
|
|
@@ -320,7 +320,7 @@ export declare const InventoryService: {
|
|
|
320
320
|
readonly updateStorageWithShortURL: {
|
|
321
321
|
readonly name: "UpdateStorageWithShortURL";
|
|
322
322
|
readonly I: typeof InventoryServiceUpdateStorageReq;
|
|
323
|
-
readonly O: typeof
|
|
323
|
+
readonly O: typeof GenericInventory;
|
|
324
324
|
readonly kind: MethodKind.Unary;
|
|
325
325
|
};
|
|
326
326
|
/**
|
|
@@ -331,7 +331,7 @@ export declare const InventoryService: {
|
|
|
331
331
|
readonly updateStorageWithInternalItemCode: {
|
|
332
332
|
readonly name: "UpdateStorageWithInternalItemCode";
|
|
333
333
|
readonly I: typeof InventoryServiceUpdateStorageReq;
|
|
334
|
-
readonly O: typeof
|
|
334
|
+
readonly O: typeof GenericInventory;
|
|
335
335
|
readonly kind: MethodKind.Unary;
|
|
336
336
|
};
|
|
337
337
|
/**
|
|
@@ -342,7 +342,7 @@ export declare const InventoryService: {
|
|
|
342
342
|
readonly moveToStorageWithShortURL: {
|
|
343
343
|
readonly name: "MoveToStorageWithShortURL";
|
|
344
344
|
readonly I: typeof InventoryServiceUpdateStorageReq;
|
|
345
|
-
readonly O: typeof
|
|
345
|
+
readonly O: typeof GenericInventory;
|
|
346
346
|
readonly kind: MethodKind.Unary;
|
|
347
347
|
};
|
|
348
348
|
/**
|
|
@@ -353,7 +353,7 @@ export declare const InventoryService: {
|
|
|
353
353
|
readonly moveToStorageWithInternalItemCode: {
|
|
354
354
|
readonly name: "MoveToStorageWithInternalItemCode";
|
|
355
355
|
readonly I: typeof InventoryServiceUpdateStorageReq;
|
|
356
|
-
readonly O: typeof
|
|
356
|
+
readonly O: typeof GenericInventory;
|
|
357
357
|
readonly kind: MethodKind.Unary;
|
|
358
358
|
};
|
|
359
359
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inventory.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/inventory.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,+BAA+B,EAAE,mCAAmC,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,uBAAuB,EAAE,sBAAsB,EAAE,2BAA2B,EAAE,0BAA0B,EAAE,iCAAiC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,0BAA0B,EAAE,4BAA4B,EAAE,MAAM,0BAA0B,CAAC;AACpa,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"inventory.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/inventory.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,+BAA+B,EAAE,mCAAmC,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,uBAAuB,EAAE,sBAAsB,EAAE,2BAA2B,EAAE,0BAA0B,EAAE,iCAAiC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,0BAA0B,EAAE,4BAA4B,EAAE,MAAM,0BAA0B,CAAC;AACpa,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,gBAAgB,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAErG;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB;;;QAGzB;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PurchaseEnquiriesServicePaginatedItemsResponse, PurchaseEnquiry, PurchaseEnquiryItem, PurchaseEnquiryItemHistoryRequest, PurchaseEnquiryItemsSearchRequest, PurchasesEnquiriesItemsList, PurchasesEnquiriesList, PurchasesEnquiriesServiceCountReq, PurchasesEnquiriesServiceCreateRequest, PurchasesEnquiriesServiceFilterReq, PurchasesEnquiriesServiceItemCreateRequest, PurchasesEnquiriesServiceItemUpdateRequest, PurchasesEnquiriesServicePaginationReq, PurchasesEnquiriesServicePaginationResponse, PurchasesEnquiriesServiceSearchAllReq, PurchasesEnquiriesServiceUpdateRequest } from "./purchases_enquiries.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, BooleanResponse, CountInSLCStatusRequest, CountResponse, Empty, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithFile, IdentifierUUIDWithUserComment, IdentifierWithSearchKey, IdentifierWithUserComment, ReorderItemsRequest, SimpleSearchReq, StandardFile } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, BooleanResponse, CountInSLCStatusRequest, CountResponse, Empty, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithFile, IdentifierUUIDWithUserComment, IdentifierWithEmailAttributes, IdentifierWithSearchKey, IdentifierWithUserComment, ReorderItemsRequest, SimpleSearchReq, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
import { MagicLink, MagicLinksServiceCreateRequestForSpecificResource } from "./magic_links.scailo_pb.js";
|
|
5
5
|
/**
|
|
@@ -176,6 +176,17 @@ export declare const PurchasesEnquiriesService: {
|
|
|
176
176
|
readonly O: typeof IdentifierResponse;
|
|
177
177
|
readonly kind: MethodKind.Unary;
|
|
178
178
|
};
|
|
179
|
+
/**
|
|
180
|
+
* Send Email
|
|
181
|
+
*
|
|
182
|
+
* @generated from rpc Scailo.PurchasesEnquiriesService.SendEmail
|
|
183
|
+
*/
|
|
184
|
+
readonly sendEmail: {
|
|
185
|
+
readonly name: "SendEmail";
|
|
186
|
+
readonly I: typeof IdentifierWithEmailAttributes;
|
|
187
|
+
readonly O: typeof IdentifierResponse;
|
|
188
|
+
readonly kind: MethodKind.Unary;
|
|
189
|
+
};
|
|
179
190
|
/**
|
|
180
191
|
* Create a magic link
|
|
181
192
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"purchases_enquiries.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/purchases_enquiries.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,8CAA8C,EAAE,eAAe,EAAE,mBAAmB,EAAE,iCAAiC,EAAE,iCAAiC,EAAE,2BAA2B,EAAE,sBAAsB,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,kCAAkC,EAAE,0CAA0C,EAAE,0CAA0C,EAAE,sCAAsC,EAAE,2CAA2C,EAAE,qCAAqC,EAAE,sCAAsC,EAAE,MAAM,oCAAoC,CAAC;AAChnB,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,uBAAuB,EAAE,aAAa,EAAE,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"purchases_enquiries.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/purchases_enquiries.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,8CAA8C,EAAE,eAAe,EAAE,mBAAmB,EAAE,iCAAiC,EAAE,iCAAiC,EAAE,2BAA2B,EAAE,sBAAsB,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,kCAAkC,EAAE,0CAA0C,EAAE,0CAA0C,EAAE,sCAAsC,EAAE,2CAA2C,EAAE,qCAAqC,EAAE,sCAAsC,EAAE,MAAM,oCAAoC,CAAC;AAChnB,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,uBAAuB,EAAE,aAAa,EAAE,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,6BAA6B,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClX,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,iDAAiD,EAAE,MAAM,4BAA4B,CAAC;AAE1G;;;;;GAKG;AACH,eAAO,MAAM,yBAAyB;;;QAGlC;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;;CAQG,CAAC"}
|
|
@@ -327,7 +327,7 @@ exports.InventoryService = {
|
|
|
327
327
|
updateStorageWithShortURL: {
|
|
328
328
|
name: "UpdateStorageWithShortURL",
|
|
329
329
|
I: inventory_scailo_pb_js_1.InventoryServiceUpdateStorageReq,
|
|
330
|
-
O:
|
|
330
|
+
O: inventory_scailo_pb_js_1.GenericInventory,
|
|
331
331
|
kind: protobuf_1.MethodKind.Unary,
|
|
332
332
|
},
|
|
333
333
|
/**
|
|
@@ -338,7 +338,7 @@ exports.InventoryService = {
|
|
|
338
338
|
updateStorageWithInternalItemCode: {
|
|
339
339
|
name: "UpdateStorageWithInternalItemCode",
|
|
340
340
|
I: inventory_scailo_pb_js_1.InventoryServiceUpdateStorageReq,
|
|
341
|
-
O:
|
|
341
|
+
O: inventory_scailo_pb_js_1.GenericInventory,
|
|
342
342
|
kind: protobuf_1.MethodKind.Unary,
|
|
343
343
|
},
|
|
344
344
|
/**
|
|
@@ -349,7 +349,7 @@ exports.InventoryService = {
|
|
|
349
349
|
moveToStorageWithShortURL: {
|
|
350
350
|
name: "MoveToStorageWithShortURL",
|
|
351
351
|
I: inventory_scailo_pb_js_1.InventoryServiceUpdateStorageReq,
|
|
352
|
-
O:
|
|
352
|
+
O: inventory_scailo_pb_js_1.GenericInventory,
|
|
353
353
|
kind: protobuf_1.MethodKind.Unary,
|
|
354
354
|
},
|
|
355
355
|
/**
|
|
@@ -360,7 +360,7 @@ exports.InventoryService = {
|
|
|
360
360
|
moveToStorageWithInternalItemCode: {
|
|
361
361
|
name: "MoveToStorageWithInternalItemCode",
|
|
362
362
|
I: inventory_scailo_pb_js_1.InventoryServiceUpdateStorageReq,
|
|
363
|
-
O:
|
|
363
|
+
O: inventory_scailo_pb_js_1.GenericInventory,
|
|
364
364
|
kind: protobuf_1.MethodKind.Unary,
|
|
365
365
|
},
|
|
366
366
|
}
|
|
@@ -183,6 +183,17 @@ exports.PurchasesEnquiriesService = {
|
|
|
183
183
|
O: base_scailo_pb_js_1.IdentifierResponse,
|
|
184
184
|
kind: protobuf_1.MethodKind.Unary,
|
|
185
185
|
},
|
|
186
|
+
/**
|
|
187
|
+
* Send Email
|
|
188
|
+
*
|
|
189
|
+
* @generated from rpc Scailo.PurchasesEnquiriesService.SendEmail
|
|
190
|
+
*/
|
|
191
|
+
sendEmail: {
|
|
192
|
+
name: "SendEmail",
|
|
193
|
+
I: base_scailo_pb_js_1.IdentifierWithEmailAttributes,
|
|
194
|
+
O: base_scailo_pb_js_1.IdentifierResponse,
|
|
195
|
+
kind: protobuf_1.MethodKind.Unary,
|
|
196
|
+
},
|
|
186
197
|
/**
|
|
187
198
|
* Create a magic link
|
|
188
199
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ConsolidatedInventoryStatistics, ConsolidatedInventoryStatisticsList, GenericInventory, GenericInventoryList, InventoryDetailedDemand, InventoryHashSearchReq, InventoryIndentedStatistics, InventoryOrderedStatistics, InventoryServiceFamilyQuantityReq, InventoryServiceUpdateStorageReq, InventoryWorkInProgressStatistics, IssuableInventorySearchReq, ReturnableInventorySearchReq } from "./inventory.scailo_pb.js";
|
|
2
2
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
3
|
-
import { Identifier,
|
|
3
|
+
import { Identifier, IdentifiersList, QuantityResponse, SimpleSearchReq } from "./base.scailo_pb.js";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
6
6
|
* Describes the common methods applicable on inventory
|
|
@@ -320,7 +320,7 @@ export declare const InventoryService: {
|
|
|
320
320
|
readonly updateStorageWithShortURL: {
|
|
321
321
|
readonly name: "UpdateStorageWithShortURL";
|
|
322
322
|
readonly I: typeof InventoryServiceUpdateStorageReq;
|
|
323
|
-
readonly O: typeof
|
|
323
|
+
readonly O: typeof GenericInventory;
|
|
324
324
|
readonly kind: MethodKind.Unary;
|
|
325
325
|
};
|
|
326
326
|
/**
|
|
@@ -331,7 +331,7 @@ export declare const InventoryService: {
|
|
|
331
331
|
readonly updateStorageWithInternalItemCode: {
|
|
332
332
|
readonly name: "UpdateStorageWithInternalItemCode";
|
|
333
333
|
readonly I: typeof InventoryServiceUpdateStorageReq;
|
|
334
|
-
readonly O: typeof
|
|
334
|
+
readonly O: typeof GenericInventory;
|
|
335
335
|
readonly kind: MethodKind.Unary;
|
|
336
336
|
};
|
|
337
337
|
/**
|
|
@@ -342,7 +342,7 @@ export declare const InventoryService: {
|
|
|
342
342
|
readonly moveToStorageWithShortURL: {
|
|
343
343
|
readonly name: "MoveToStorageWithShortURL";
|
|
344
344
|
readonly I: typeof InventoryServiceUpdateStorageReq;
|
|
345
|
-
readonly O: typeof
|
|
345
|
+
readonly O: typeof GenericInventory;
|
|
346
346
|
readonly kind: MethodKind.Unary;
|
|
347
347
|
};
|
|
348
348
|
/**
|
|
@@ -353,7 +353,7 @@ export declare const InventoryService: {
|
|
|
353
353
|
readonly moveToStorageWithInternalItemCode: {
|
|
354
354
|
readonly name: "MoveToStorageWithInternalItemCode";
|
|
355
355
|
readonly I: typeof InventoryServiceUpdateStorageReq;
|
|
356
|
-
readonly O: typeof
|
|
356
|
+
readonly O: typeof GenericInventory;
|
|
357
357
|
readonly kind: MethodKind.Unary;
|
|
358
358
|
};
|
|
359
359
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inventory.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/inventory.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,+BAA+B,EAAE,mCAAmC,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,uBAAuB,EAAE,sBAAsB,EAAE,2BAA2B,EAAE,0BAA0B,EAAE,iCAAiC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,0BAA0B,EAAE,4BAA4B,EAAE,MAAM,0BAA0B,CAAC;AACpa,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,
|
|
1
|
+
{"version":3,"file":"inventory.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/inventory.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,+BAA+B,EAAE,mCAAmC,EAAE,gBAAgB,EAAE,oBAAoB,EAAE,uBAAuB,EAAE,sBAAsB,EAAE,2BAA2B,EAAE,0BAA0B,EAAE,iCAAiC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,0BAA0B,EAAE,4BAA4B,EAAE,MAAM,0BAA0B,CAAC;AACpa,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,eAAe,EAAE,gBAAgB,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AAErG;;;;;GAKG;AACH,eAAO,MAAM,gBAAgB;;;QAGzB;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PurchaseEnquiriesServicePaginatedItemsResponse, PurchaseEnquiry, PurchaseEnquiryItem, PurchaseEnquiryItemHistoryRequest, PurchaseEnquiryItemsSearchRequest, PurchasesEnquiriesItemsList, PurchasesEnquiriesList, PurchasesEnquiriesServiceCountReq, PurchasesEnquiriesServiceCreateRequest, PurchasesEnquiriesServiceFilterReq, PurchasesEnquiriesServiceItemCreateRequest, PurchasesEnquiriesServiceItemUpdateRequest, PurchasesEnquiriesServicePaginationReq, PurchasesEnquiriesServicePaginationResponse, PurchasesEnquiriesServiceSearchAllReq, PurchasesEnquiriesServiceUpdateRequest } from "./purchases_enquiries.scailo_pb.js";
|
|
2
|
-
import { ActiveStatus, BooleanResponse, CountInSLCStatusRequest, CountResponse, Empty, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithFile, IdentifierUUIDWithUserComment, IdentifierWithSearchKey, IdentifierWithUserComment, ReorderItemsRequest, SimpleSearchReq, StandardFile } from "./base.scailo_pb.js";
|
|
2
|
+
import { ActiveStatus, BooleanResponse, CountInSLCStatusRequest, CountResponse, Empty, Identifier, IdentifierResponse, IdentifiersList, IdentifierUUID, IdentifierUUIDWithFile, IdentifierUUIDWithUserComment, IdentifierWithEmailAttributes, IdentifierWithSearchKey, IdentifierWithUserComment, ReorderItemsRequest, SimpleSearchReq, StandardFile } from "./base.scailo_pb.js";
|
|
3
3
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
4
4
|
import { MagicLink, MagicLinksServiceCreateRequestForSpecificResource } from "./magic_links.scailo_pb.js";
|
|
5
5
|
/**
|
|
@@ -176,6 +176,17 @@ export declare const PurchasesEnquiriesService: {
|
|
|
176
176
|
readonly O: typeof IdentifierResponse;
|
|
177
177
|
readonly kind: MethodKind.Unary;
|
|
178
178
|
};
|
|
179
|
+
/**
|
|
180
|
+
* Send Email
|
|
181
|
+
*
|
|
182
|
+
* @generated from rpc Scailo.PurchasesEnquiriesService.SendEmail
|
|
183
|
+
*/
|
|
184
|
+
readonly sendEmail: {
|
|
185
|
+
readonly name: "SendEmail";
|
|
186
|
+
readonly I: typeof IdentifierWithEmailAttributes;
|
|
187
|
+
readonly O: typeof IdentifierResponse;
|
|
188
|
+
readonly kind: MethodKind.Unary;
|
|
189
|
+
};
|
|
179
190
|
/**
|
|
180
191
|
* Create a magic link
|
|
181
192
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"purchases_enquiries.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/purchases_enquiries.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,8CAA8C,EAAE,eAAe,EAAE,mBAAmB,EAAE,iCAAiC,EAAE,iCAAiC,EAAE,2BAA2B,EAAE,sBAAsB,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,kCAAkC,EAAE,0CAA0C,EAAE,0CAA0C,EAAE,sCAAsC,EAAE,2CAA2C,EAAE,qCAAqC,EAAE,sCAAsC,EAAE,MAAM,oCAAoC,CAAC;AAChnB,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,uBAAuB,EAAE,aAAa,EAAE,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"purchases_enquiries.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/purchases_enquiries.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,8CAA8C,EAAE,eAAe,EAAE,mBAAmB,EAAE,iCAAiC,EAAE,iCAAiC,EAAE,2BAA2B,EAAE,sBAAsB,EAAE,iCAAiC,EAAE,sCAAsC,EAAE,kCAAkC,EAAE,0CAA0C,EAAE,0CAA0C,EAAE,sCAAsC,EAAE,2CAA2C,EAAE,qCAAqC,EAAE,sCAAsC,EAAE,MAAM,oCAAoC,CAAC;AAChnB,OAAO,EAAE,YAAY,EAAE,eAAe,EAAE,uBAAuB,EAAE,aAAa,EAAE,KAAK,EAAE,UAAU,EAAE,kBAAkB,EAAE,eAAe,EAAE,cAAc,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,6BAA6B,EAAE,uBAAuB,EAAE,yBAAyB,EAAE,mBAAmB,EAAE,eAAe,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAClX,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,SAAS,EAAE,iDAAiD,EAAE,MAAM,4BAA4B,CAAC;AAE1G;;;;;GAKG;AACH,eAAO,MAAM,yBAAyB;;;QAGlC;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;WAKG;;;;;;;;CAQG,CAAC"}
|