@aldiokta/protocgen 1.1.26 → 1.1.28

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.
Files changed (31) hide show
  1. package/package.json +1 -1
  2. package/prisca/v1/bidding/bidding_grpc_pb.js +55 -0
  3. package/prisca/v1/bidding/bidding_pb.js +1042 -63
  4. package/prisca/v1/core/access_manager/access_manager_grpc_pb.js +33 -0
  5. package/prisca/v1/core/access_manager/access_manager_pb.js +385 -0
  6. package/prisca/v1/core/auth/auth_grpc_pb.js +103 -3
  7. package/prisca/v1/core/auth/auth_pb.js +2519 -1181
  8. package/prisca/v1/core/file_upload/file_upload_pb.js +93 -3
  9. package/prisca/v1/core/item_transaction/item_transaction_pb.js +183 -33
  10. package/prisca/v1/core/line_of_activity/line_of_activity_pb.js +438 -46
  11. package/prisca/v1/core/line_of_approval/line_of_approval_pb.js +31 -1
  12. package/prisca/v1/core/location/location_pb.js +446 -57
  13. package/prisca/v1/core/messaging/notification_grpc_pb.js +188 -0
  14. package/prisca/v1/core/messaging/notification_pb.js +2780 -0
  15. package/prisca/v1/core/price_condition/price_condition_pb.js +122 -2
  16. package/prisca/v1/core/transaction_builder/transaction_builder_grpc_pb.js +234 -168
  17. package/prisca/v1/core/transaction_builder/transaction_builder_pb.js +1987 -1775
  18. package/prisca/v1/delivery_order/delivery_order_pb.js +130 -70
  19. package/prisca/v1/good_receipt/good_receipt_grpc_pb.js +228 -1
  20. package/prisca/v1/good_receipt/good_receipt_pb.js +4779 -0
  21. package/prisca/v1/invoice/invoice_grpc_pb.js +174 -0
  22. package/prisca/v1/invoice/invoice_pb.js +4398 -0
  23. package/prisca/v1/purchase_order/purchase_order_grpc_pb.js +11 -0
  24. package/prisca/v1/purchase_order/purchase_order_pb.js +142 -22
  25. package/prisca/v1/purchase_requisition_trx/purchase_requisition_trx_pb.js +105 -75
  26. package/prisca/v1/purchasing_organization/purchasing_organization_pb.js +55 -177
  27. package/prisca/v1/quotation/quotation_pb.js +236 -26
  28. package/prisca/v1/request_for_quotation/request_for_quotation_grpc_pb.js +33 -0
  29. package/prisca/v1/request_for_quotation/request_for_quotation_pb.js +413 -28
  30. package/prisca/v1/vendor_domain/vendor_domain_grpc_pb.js +55 -0
  31. package/prisca/v1/vendor_domain/vendor_domain_pb.js +1076 -317
@@ -39,6 +39,8 @@ var prisca_v1_request_for_quotation_request_for_quotation_pb = require('../../..
39
39
  goog.object.extend(proto, prisca_v1_request_for_quotation_request_for_quotation_pb);
40
40
  goog.exportSymbol('proto.Bidding', null, global);
41
41
  goog.exportSymbol('proto.CreateBiddingRequest', null, global);
42
+ goog.exportSymbol('proto.DeleteVendorBiddingReq', null, global);
43
+ goog.exportSymbol('proto.DeleteVendorBiddingRes', null, global);
42
44
  goog.exportSymbol('proto.GetBiddingByIdRequest', null, global);
43
45
  goog.exportSymbol('proto.GetBiddingByIdResponse', null, global);
44
46
  goog.exportSymbol('proto.GetBiddingDetailResponse', null, global);
@@ -51,6 +53,7 @@ goog.exportSymbol('proto.Quotation', null, global);
51
53
  goog.exportSymbol('proto.RequestAddVendorBidding', null, global);
52
54
  goog.exportSymbol('proto.RequestBidding', null, global);
53
55
  goog.exportSymbol('proto.RequestBiddingBase', null, global);
56
+ goog.exportSymbol('proto.RequestExtended', null, global);
54
57
  goog.exportSymbol('proto.RequestGetListBidding', null, global);
55
58
  goog.exportSymbol('proto.RequestPO', null, global);
56
59
  goog.exportSymbol('proto.RequestUpdateFileBidding', null, global);
@@ -104,6 +107,27 @@ if (goog.DEBUG && !COMPILED) {
104
107
  */
105
108
  proto.Bidding.displayName = 'proto.Bidding';
106
109
  }
110
+ /**
111
+ * Generated by JsPbCodeGenerator.
112
+ * @param {Array=} opt_data Optional initial data array, typically from a
113
+ * server response, or constructed directly in Javascript. The array is used
114
+ * in place and becomes part of the constructed object. It is not cloned.
115
+ * If no data is provided, the constructed object will be empty, but still
116
+ * valid.
117
+ * @extends {jspb.Message}
118
+ * @constructor
119
+ */
120
+ proto.RequestExtended = function(opt_data) {
121
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
122
+ };
123
+ goog.inherits(proto.RequestExtended, jspb.Message);
124
+ if (goog.DEBUG && !COMPILED) {
125
+ /**
126
+ * @public
127
+ * @override
128
+ */
129
+ proto.RequestExtended.displayName = 'proto.RequestExtended';
130
+ }
107
131
  /**
108
132
  * Generated by JsPbCodeGenerator.
109
133
  * @param {Array=} opt_data Optional initial data array, typically from a
@@ -577,7 +601,7 @@ if (goog.DEBUG && !COMPILED) {
577
601
  * @constructor
578
602
  */
579
603
  proto.ResponseRequestPo = function(opt_data) {
580
- jspb.Message.initialize(this, opt_data, 0, -1, null, null);
604
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.ResponseRequestPo.repeatedFields_, null);
581
605
  };
582
606
  goog.inherits(proto.ResponseRequestPo, jspb.Message);
583
607
  if (goog.DEBUG && !COMPILED) {
@@ -587,6 +611,48 @@ if (goog.DEBUG && !COMPILED) {
587
611
  */
588
612
  proto.ResponseRequestPo.displayName = 'proto.ResponseRequestPo';
589
613
  }
614
+ /**
615
+ * Generated by JsPbCodeGenerator.
616
+ * @param {Array=} opt_data Optional initial data array, typically from a
617
+ * server response, or constructed directly in Javascript. The array is used
618
+ * in place and becomes part of the constructed object. It is not cloned.
619
+ * If no data is provided, the constructed object will be empty, but still
620
+ * valid.
621
+ * @extends {jspb.Message}
622
+ * @constructor
623
+ */
624
+ proto.DeleteVendorBiddingReq = function(opt_data) {
625
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.DeleteVendorBiddingReq.repeatedFields_, null);
626
+ };
627
+ goog.inherits(proto.DeleteVendorBiddingReq, jspb.Message);
628
+ if (goog.DEBUG && !COMPILED) {
629
+ /**
630
+ * @public
631
+ * @override
632
+ */
633
+ proto.DeleteVendorBiddingReq.displayName = 'proto.DeleteVendorBiddingReq';
634
+ }
635
+ /**
636
+ * Generated by JsPbCodeGenerator.
637
+ * @param {Array=} opt_data Optional initial data array, typically from a
638
+ * server response, or constructed directly in Javascript. The array is used
639
+ * in place and becomes part of the constructed object. It is not cloned.
640
+ * If no data is provided, the constructed object will be empty, but still
641
+ * valid.
642
+ * @extends {jspb.Message}
643
+ * @constructor
644
+ */
645
+ proto.DeleteVendorBiddingRes = function(opt_data) {
646
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
647
+ };
648
+ goog.inherits(proto.DeleteVendorBiddingRes, jspb.Message);
649
+ if (goog.DEBUG && !COMPILED) {
650
+ /**
651
+ * @public
652
+ * @override
653
+ */
654
+ proto.DeleteVendorBiddingRes.displayName = 'proto.DeleteVendorBiddingRes';
655
+ }
590
656
 
591
657
  /**
592
658
  * List of repeated fields within this message type.
@@ -665,7 +731,13 @@ companiesReferencesId: jspb.Message.getFieldWithDefault(msg, 35, ""),
665
731
  filesList: jspb.Message.toObjectList(msg.getFilesList(),
666
732
  prisca_v1_core_file_upload_file_upload_pb.FileUploadReferencesReq.toObject, includeInstance),
667
733
  purchaseRequisitionTransactionNumber: jspb.Message.getFieldWithDefault(msg, 37, ""),
668
- fileIds: jspb.Message.getFieldWithDefault(msg, 38, "")
734
+ fileIds: jspb.Message.getFieldWithDefault(msg, 38, ""),
735
+ status: jspb.Message.getFieldWithDefault(msg, 39, ""),
736
+ biddingDate: jspb.Message.getFieldWithDefault(msg, 40, ""),
737
+ biddingStartDate: jspb.Message.getFieldWithDefault(msg, 41, ""),
738
+ biddingEndDate: jspb.Message.getFieldWithDefault(msg, 42, ""),
739
+ requestForQuotationMethod: jspb.Message.getFieldWithDefault(msg, 43, ""),
740
+ maxSubmissionDate: jspb.Message.getFieldWithDefault(msg, 44, "")
669
741
  };
670
742
 
671
743
  if (includeInstance) {
@@ -860,6 +932,30 @@ proto.Quotation.deserializeBinaryFromReader = function(msg, reader) {
860
932
  var value = /** @type {string} */ (reader.readString());
861
933
  msg.setFileIds(value);
862
934
  break;
935
+ case 39:
936
+ var value = /** @type {string} */ (reader.readString());
937
+ msg.setStatus(value);
938
+ break;
939
+ case 40:
940
+ var value = /** @type {string} */ (reader.readString());
941
+ msg.setBiddingDate(value);
942
+ break;
943
+ case 41:
944
+ var value = /** @type {string} */ (reader.readString());
945
+ msg.setBiddingStartDate(value);
946
+ break;
947
+ case 42:
948
+ var value = /** @type {string} */ (reader.readString());
949
+ msg.setBiddingEndDate(value);
950
+ break;
951
+ case 43:
952
+ var value = /** @type {string} */ (reader.readString());
953
+ msg.setRequestForQuotationMethod(value);
954
+ break;
955
+ case 44:
956
+ var value = /** @type {string} */ (reader.readString());
957
+ msg.setMaxSubmissionDate(value);
958
+ break;
863
959
  default:
864
960
  reader.skipField();
865
961
  break;
@@ -1161,6 +1257,48 @@ proto.Quotation.serializeBinaryToWriter = function(message, writer) {
1161
1257
  f
1162
1258
  );
1163
1259
  }
1260
+ f = message.getStatus();
1261
+ if (f.length > 0) {
1262
+ writer.writeString(
1263
+ 39,
1264
+ f
1265
+ );
1266
+ }
1267
+ f = message.getBiddingDate();
1268
+ if (f.length > 0) {
1269
+ writer.writeString(
1270
+ 40,
1271
+ f
1272
+ );
1273
+ }
1274
+ f = message.getBiddingStartDate();
1275
+ if (f.length > 0) {
1276
+ writer.writeString(
1277
+ 41,
1278
+ f
1279
+ );
1280
+ }
1281
+ f = message.getBiddingEndDate();
1282
+ if (f.length > 0) {
1283
+ writer.writeString(
1284
+ 42,
1285
+ f
1286
+ );
1287
+ }
1288
+ f = message.getRequestForQuotationMethod();
1289
+ if (f.length > 0) {
1290
+ writer.writeString(
1291
+ 43,
1292
+ f
1293
+ );
1294
+ }
1295
+ f = message.getMaxSubmissionDate();
1296
+ if (f.length > 0) {
1297
+ writer.writeString(
1298
+ 44,
1299
+ f
1300
+ );
1301
+ }
1164
1302
  };
1165
1303
 
1166
1304
 
@@ -1964,6 +2102,114 @@ proto.Quotation.prototype.setFileIds = function(value) {
1964
2102
  };
1965
2103
 
1966
2104
 
2105
+ /**
2106
+ * optional string status = 39;
2107
+ * @return {string}
2108
+ */
2109
+ proto.Quotation.prototype.getStatus = function() {
2110
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 39, ""));
2111
+ };
2112
+
2113
+
2114
+ /**
2115
+ * @param {string} value
2116
+ * @return {!proto.Quotation} returns this
2117
+ */
2118
+ proto.Quotation.prototype.setStatus = function(value) {
2119
+ return jspb.Message.setProto3StringField(this, 39, value);
2120
+ };
2121
+
2122
+
2123
+ /**
2124
+ * optional string bidding_date = 40;
2125
+ * @return {string}
2126
+ */
2127
+ proto.Quotation.prototype.getBiddingDate = function() {
2128
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 40, ""));
2129
+ };
2130
+
2131
+
2132
+ /**
2133
+ * @param {string} value
2134
+ * @return {!proto.Quotation} returns this
2135
+ */
2136
+ proto.Quotation.prototype.setBiddingDate = function(value) {
2137
+ return jspb.Message.setProto3StringField(this, 40, value);
2138
+ };
2139
+
2140
+
2141
+ /**
2142
+ * optional string bidding_start_date = 41;
2143
+ * @return {string}
2144
+ */
2145
+ proto.Quotation.prototype.getBiddingStartDate = function() {
2146
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 41, ""));
2147
+ };
2148
+
2149
+
2150
+ /**
2151
+ * @param {string} value
2152
+ * @return {!proto.Quotation} returns this
2153
+ */
2154
+ proto.Quotation.prototype.setBiddingStartDate = function(value) {
2155
+ return jspb.Message.setProto3StringField(this, 41, value);
2156
+ };
2157
+
2158
+
2159
+ /**
2160
+ * optional string bidding_end_date = 42;
2161
+ * @return {string}
2162
+ */
2163
+ proto.Quotation.prototype.getBiddingEndDate = function() {
2164
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 42, ""));
2165
+ };
2166
+
2167
+
2168
+ /**
2169
+ * @param {string} value
2170
+ * @return {!proto.Quotation} returns this
2171
+ */
2172
+ proto.Quotation.prototype.setBiddingEndDate = function(value) {
2173
+ return jspb.Message.setProto3StringField(this, 42, value);
2174
+ };
2175
+
2176
+
2177
+ /**
2178
+ * optional string request_for_quotation_method = 43;
2179
+ * @return {string}
2180
+ */
2181
+ proto.Quotation.prototype.getRequestForQuotationMethod = function() {
2182
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 43, ""));
2183
+ };
2184
+
2185
+
2186
+ /**
2187
+ * @param {string} value
2188
+ * @return {!proto.Quotation} returns this
2189
+ */
2190
+ proto.Quotation.prototype.setRequestForQuotationMethod = function(value) {
2191
+ return jspb.Message.setProto3StringField(this, 43, value);
2192
+ };
2193
+
2194
+
2195
+ /**
2196
+ * optional string max_submission_date = 44;
2197
+ * @return {string}
2198
+ */
2199
+ proto.Quotation.prototype.getMaxSubmissionDate = function() {
2200
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 44, ""));
2201
+ };
2202
+
2203
+
2204
+ /**
2205
+ * @param {string} value
2206
+ * @return {!proto.Quotation} returns this
2207
+ */
2208
+ proto.Quotation.prototype.setMaxSubmissionDate = function(value) {
2209
+ return jspb.Message.setProto3StringField(this, 44, value);
2210
+ };
2211
+
2212
+
1967
2213
 
1968
2214
  /**
1969
2215
  * List of repeated fields within this message type.
@@ -2027,7 +2273,11 @@ updatedByEmployee: (f = msg.getUpdatedByEmployee()) && prisca_v1_core_employee_e
2027
2273
  status: jspb.Message.getFieldWithDefault(msg, 21, ""),
2028
2274
  companiesReferencesId: jspb.Message.getFieldWithDefault(msg, 22, ""),
2029
2275
  groupReferences: jspb.Message.getFieldWithDefault(msg, 23, ""),
2030
- purchaseRequisitionTransactionNumber: jspb.Message.getFieldWithDefault(msg, 24, "")
2276
+ purchaseRequisitionTransactionNumber: jspb.Message.getFieldWithDefault(msg, 24, ""),
2277
+ totalQuotation: jspb.Message.getFieldWithDefault(msg, 25, 0),
2278
+ fullfiledQuotation: jspb.Message.getFieldWithDefault(msg, 26, 0),
2279
+ termOfPayment: jspb.Message.getFieldWithDefault(msg, 27, ""),
2280
+ purchasingOrganization: jspb.Message.getFieldWithDefault(msg, 28, "")
2031
2281
  };
2032
2282
 
2033
2283
  if (includeInstance) {
@@ -2163,6 +2413,22 @@ proto.Bidding.deserializeBinaryFromReader = function(msg, reader) {
2163
2413
  var value = /** @type {string} */ (reader.readString());
2164
2414
  msg.setPurchaseRequisitionTransactionNumber(value);
2165
2415
  break;
2416
+ case 25:
2417
+ var value = /** @type {number} */ (reader.readInt64());
2418
+ msg.setTotalQuotation(value);
2419
+ break;
2420
+ case 26:
2421
+ var value = /** @type {number} */ (reader.readInt64());
2422
+ msg.setFullfiledQuotation(value);
2423
+ break;
2424
+ case 27:
2425
+ var value = /** @type {string} */ (reader.readString());
2426
+ msg.setTermOfPayment(value);
2427
+ break;
2428
+ case 28:
2429
+ var value = /** @type {string} */ (reader.readString());
2430
+ msg.setPurchasingOrganization(value);
2431
+ break;
2166
2432
  default:
2167
2433
  reader.skipField();
2168
2434
  break;
@@ -2363,6 +2629,34 @@ proto.Bidding.serializeBinaryToWriter = function(message, writer) {
2363
2629
  f
2364
2630
  );
2365
2631
  }
2632
+ f = message.getTotalQuotation();
2633
+ if (f !== 0) {
2634
+ writer.writeInt64(
2635
+ 25,
2636
+ f
2637
+ );
2638
+ }
2639
+ f = message.getFullfiledQuotation();
2640
+ if (f !== 0) {
2641
+ writer.writeInt64(
2642
+ 26,
2643
+ f
2644
+ );
2645
+ }
2646
+ f = message.getTermOfPayment();
2647
+ if (f.length > 0) {
2648
+ writer.writeString(
2649
+ 27,
2650
+ f
2651
+ );
2652
+ }
2653
+ f = message.getPurchasingOrganization();
2654
+ if (f.length > 0) {
2655
+ writer.writeString(
2656
+ 28,
2657
+ f
2658
+ );
2659
+ }
2366
2660
  };
2367
2661
 
2368
2662
 
@@ -2856,42 +3150,334 @@ proto.Bidding.prototype.setPurchaseRequisitionTransactionNumber = function(value
2856
3150
  };
2857
3151
 
2858
3152
 
2859
-
2860
3153
  /**
2861
- * List of repeated fields within this message type.
2862
- * @private {!Array<number>}
2863
- * @const
3154
+ * optional int64 total_quotation = 25;
3155
+ * @return {number}
2864
3156
  */
2865
- proto.RequestBiddingBase.repeatedFields_ = [11,13];
3157
+ proto.Bidding.prototype.getTotalQuotation = function() {
3158
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 25, 0));
3159
+ };
3160
+
2866
3161
 
3162
+ /**
3163
+ * @param {number} value
3164
+ * @return {!proto.Bidding} returns this
3165
+ */
3166
+ proto.Bidding.prototype.setTotalQuotation = function(value) {
3167
+ return jspb.Message.setProto3IntField(this, 25, value);
3168
+ };
2867
3169
 
2868
3170
 
2869
- if (jspb.Message.GENERATE_TO_OBJECT) {
2870
3171
  /**
2871
- * Creates an object representation of this proto.
2872
- * Field names that are reserved in JavaScript and will be renamed to pb_name.
2873
- * Optional fields that are not set will be set to undefined.
2874
- * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
2875
- * For the list of reserved names please see:
2876
- * net/proto2/compiler/js/internal/generator.cc#kKeyword.
2877
- * @param {boolean=} opt_includeInstance Deprecated. whether to include the
2878
- * JSPB instance for transitional soy proto support:
2879
- * http://goto/soy-param-migration
2880
- * @return {!Object}
3172
+ * optional int64 fullfiled_quotation = 26;
3173
+ * @return {number}
2881
3174
  */
2882
- proto.RequestBiddingBase.prototype.toObject = function(opt_includeInstance) {
2883
- return proto.RequestBiddingBase.toObject(opt_includeInstance, this);
3175
+ proto.Bidding.prototype.getFullfiledQuotation = function() {
3176
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 26, 0));
2884
3177
  };
2885
3178
 
2886
3179
 
2887
3180
  /**
2888
- * Static version of the {@see toObject} method.
2889
- * @param {boolean|undefined} includeInstance Deprecated. Whether to include
2890
- * the JSPB instance for transitional soy proto support:
2891
- * http://goto/soy-param-migration
2892
- * @param {!proto.RequestBiddingBase} msg The msg instance to transform.
2893
- * @return {!Object}
2894
- * @suppress {unusedLocalVariables} f is only used for nested messages
3181
+ * @param {number} value
3182
+ * @return {!proto.Bidding} returns this
3183
+ */
3184
+ proto.Bidding.prototype.setFullfiledQuotation = function(value) {
3185
+ return jspb.Message.setProto3IntField(this, 26, value);
3186
+ };
3187
+
3188
+
3189
+ /**
3190
+ * optional string term_of_payment = 27;
3191
+ * @return {string}
3192
+ */
3193
+ proto.Bidding.prototype.getTermOfPayment = function() {
3194
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 27, ""));
3195
+ };
3196
+
3197
+
3198
+ /**
3199
+ * @param {string} value
3200
+ * @return {!proto.Bidding} returns this
3201
+ */
3202
+ proto.Bidding.prototype.setTermOfPayment = function(value) {
3203
+ return jspb.Message.setProto3StringField(this, 27, value);
3204
+ };
3205
+
3206
+
3207
+ /**
3208
+ * optional string purchasing_organization = 28;
3209
+ * @return {string}
3210
+ */
3211
+ proto.Bidding.prototype.getPurchasingOrganization = function() {
3212
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 28, ""));
3213
+ };
3214
+
3215
+
3216
+ /**
3217
+ * @param {string} value
3218
+ * @return {!proto.Bidding} returns this
3219
+ */
3220
+ proto.Bidding.prototype.setPurchasingOrganization = function(value) {
3221
+ return jspb.Message.setProto3StringField(this, 28, value);
3222
+ };
3223
+
3224
+
3225
+
3226
+
3227
+
3228
+ if (jspb.Message.GENERATE_TO_OBJECT) {
3229
+ /**
3230
+ * Creates an object representation of this proto.
3231
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
3232
+ * Optional fields that are not set will be set to undefined.
3233
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
3234
+ * For the list of reserved names please see:
3235
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
3236
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
3237
+ * JSPB instance for transitional soy proto support:
3238
+ * http://goto/soy-param-migration
3239
+ * @return {!Object}
3240
+ */
3241
+ proto.RequestExtended.prototype.toObject = function(opt_includeInstance) {
3242
+ return proto.RequestExtended.toObject(opt_includeInstance, this);
3243
+ };
3244
+
3245
+
3246
+ /**
3247
+ * Static version of the {@see toObject} method.
3248
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
3249
+ * the JSPB instance for transitional soy proto support:
3250
+ * http://goto/soy-param-migration
3251
+ * @param {!proto.RequestExtended} msg The msg instance to transform.
3252
+ * @return {!Object}
3253
+ * @suppress {unusedLocalVariables} f is only used for nested messages
3254
+ */
3255
+ proto.RequestExtended.toObject = function(includeInstance, msg) {
3256
+ var f, obj = {
3257
+ referencesId: jspb.Message.getFieldWithDefault(msg, 1, ""),
3258
+ reasonBiddingExtended: jspb.Message.getFieldWithDefault(msg, 2, ""),
3259
+ maxSubmissionDate: jspb.Message.getFieldWithDefault(msg, 3, ""),
3260
+ biddingEndDate: jspb.Message.getFieldWithDefault(msg, 4, "")
3261
+ };
3262
+
3263
+ if (includeInstance) {
3264
+ obj.$jspbMessageInstance = msg;
3265
+ }
3266
+ return obj;
3267
+ };
3268
+ }
3269
+
3270
+
3271
+ /**
3272
+ * Deserializes binary data (in protobuf wire format).
3273
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
3274
+ * @return {!proto.RequestExtended}
3275
+ */
3276
+ proto.RequestExtended.deserializeBinary = function(bytes) {
3277
+ var reader = new jspb.BinaryReader(bytes);
3278
+ var msg = new proto.RequestExtended;
3279
+ return proto.RequestExtended.deserializeBinaryFromReader(msg, reader);
3280
+ };
3281
+
3282
+
3283
+ /**
3284
+ * Deserializes binary data (in protobuf wire format) from the
3285
+ * given reader into the given message object.
3286
+ * @param {!proto.RequestExtended} msg The message object to deserialize into.
3287
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
3288
+ * @return {!proto.RequestExtended}
3289
+ */
3290
+ proto.RequestExtended.deserializeBinaryFromReader = function(msg, reader) {
3291
+ while (reader.nextField()) {
3292
+ if (reader.isEndGroup()) {
3293
+ break;
3294
+ }
3295
+ var field = reader.getFieldNumber();
3296
+ switch (field) {
3297
+ case 1:
3298
+ var value = /** @type {string} */ (reader.readString());
3299
+ msg.setReferencesId(value);
3300
+ break;
3301
+ case 2:
3302
+ var value = /** @type {string} */ (reader.readString());
3303
+ msg.setReasonBiddingExtended(value);
3304
+ break;
3305
+ case 3:
3306
+ var value = /** @type {string} */ (reader.readString());
3307
+ msg.setMaxSubmissionDate(value);
3308
+ break;
3309
+ case 4:
3310
+ var value = /** @type {string} */ (reader.readString());
3311
+ msg.setBiddingEndDate(value);
3312
+ break;
3313
+ default:
3314
+ reader.skipField();
3315
+ break;
3316
+ }
3317
+ }
3318
+ return msg;
3319
+ };
3320
+
3321
+
3322
+ /**
3323
+ * Serializes the message to binary data (in protobuf wire format).
3324
+ * @return {!Uint8Array}
3325
+ */
3326
+ proto.RequestExtended.prototype.serializeBinary = function() {
3327
+ var writer = new jspb.BinaryWriter();
3328
+ proto.RequestExtended.serializeBinaryToWriter(this, writer);
3329
+ return writer.getResultBuffer();
3330
+ };
3331
+
3332
+
3333
+ /**
3334
+ * Serializes the given message to binary data (in protobuf wire
3335
+ * format), writing to the given BinaryWriter.
3336
+ * @param {!proto.RequestExtended} message
3337
+ * @param {!jspb.BinaryWriter} writer
3338
+ * @suppress {unusedLocalVariables} f is only used for nested messages
3339
+ */
3340
+ proto.RequestExtended.serializeBinaryToWriter = function(message, writer) {
3341
+ var f = undefined;
3342
+ f = message.getReferencesId();
3343
+ if (f.length > 0) {
3344
+ writer.writeString(
3345
+ 1,
3346
+ f
3347
+ );
3348
+ }
3349
+ f = message.getReasonBiddingExtended();
3350
+ if (f.length > 0) {
3351
+ writer.writeString(
3352
+ 2,
3353
+ f
3354
+ );
3355
+ }
3356
+ f = message.getMaxSubmissionDate();
3357
+ if (f.length > 0) {
3358
+ writer.writeString(
3359
+ 3,
3360
+ f
3361
+ );
3362
+ }
3363
+ f = message.getBiddingEndDate();
3364
+ if (f.length > 0) {
3365
+ writer.writeString(
3366
+ 4,
3367
+ f
3368
+ );
3369
+ }
3370
+ };
3371
+
3372
+
3373
+ /**
3374
+ * optional string references_id = 1;
3375
+ * @return {string}
3376
+ */
3377
+ proto.RequestExtended.prototype.getReferencesId = function() {
3378
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
3379
+ };
3380
+
3381
+
3382
+ /**
3383
+ * @param {string} value
3384
+ * @return {!proto.RequestExtended} returns this
3385
+ */
3386
+ proto.RequestExtended.prototype.setReferencesId = function(value) {
3387
+ return jspb.Message.setProto3StringField(this, 1, value);
3388
+ };
3389
+
3390
+
3391
+ /**
3392
+ * optional string reason_bidding_extended = 2;
3393
+ * @return {string}
3394
+ */
3395
+ proto.RequestExtended.prototype.getReasonBiddingExtended = function() {
3396
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
3397
+ };
3398
+
3399
+
3400
+ /**
3401
+ * @param {string} value
3402
+ * @return {!proto.RequestExtended} returns this
3403
+ */
3404
+ proto.RequestExtended.prototype.setReasonBiddingExtended = function(value) {
3405
+ return jspb.Message.setProto3StringField(this, 2, value);
3406
+ };
3407
+
3408
+
3409
+ /**
3410
+ * optional string max_submission_date = 3;
3411
+ * @return {string}
3412
+ */
3413
+ proto.RequestExtended.prototype.getMaxSubmissionDate = function() {
3414
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
3415
+ };
3416
+
3417
+
3418
+ /**
3419
+ * @param {string} value
3420
+ * @return {!proto.RequestExtended} returns this
3421
+ */
3422
+ proto.RequestExtended.prototype.setMaxSubmissionDate = function(value) {
3423
+ return jspb.Message.setProto3StringField(this, 3, value);
3424
+ };
3425
+
3426
+
3427
+ /**
3428
+ * optional string bidding_end_date = 4;
3429
+ * @return {string}
3430
+ */
3431
+ proto.RequestExtended.prototype.getBiddingEndDate = function() {
3432
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
3433
+ };
3434
+
3435
+
3436
+ /**
3437
+ * @param {string} value
3438
+ * @return {!proto.RequestExtended} returns this
3439
+ */
3440
+ proto.RequestExtended.prototype.setBiddingEndDate = function(value) {
3441
+ return jspb.Message.setProto3StringField(this, 4, value);
3442
+ };
3443
+
3444
+
3445
+
3446
+ /**
3447
+ * List of repeated fields within this message type.
3448
+ * @private {!Array<number>}
3449
+ * @const
3450
+ */
3451
+ proto.RequestBiddingBase.repeatedFields_ = [11,13];
3452
+
3453
+
3454
+
3455
+ if (jspb.Message.GENERATE_TO_OBJECT) {
3456
+ /**
3457
+ * Creates an object representation of this proto.
3458
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
3459
+ * Optional fields that are not set will be set to undefined.
3460
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
3461
+ * For the list of reserved names please see:
3462
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
3463
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
3464
+ * JSPB instance for transitional soy proto support:
3465
+ * http://goto/soy-param-migration
3466
+ * @return {!Object}
3467
+ */
3468
+ proto.RequestBiddingBase.prototype.toObject = function(opt_includeInstance) {
3469
+ return proto.RequestBiddingBase.toObject(opt_includeInstance, this);
3470
+ };
3471
+
3472
+
3473
+ /**
3474
+ * Static version of the {@see toObject} method.
3475
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
3476
+ * the JSPB instance for transitional soy proto support:
3477
+ * http://goto/soy-param-migration
3478
+ * @param {!proto.RequestBiddingBase} msg The msg instance to transform.
3479
+ * @return {!Object}
3480
+ * @suppress {unusedLocalVariables} f is only used for nested messages
2895
3481
  */
2896
3482
  proto.RequestBiddingBase.toObject = function(includeInstance, msg) {
2897
3483
  var f, obj = {
@@ -6110,17 +6696,17 @@ proto.GetBiddingDetailResponse.serializeBinaryToWriter = function(message, write
6110
6696
 
6111
6697
 
6112
6698
  /**
6113
- * repeated prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail transaction_builder = 1;
6114
- * @return {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>}
6699
+ * repeated TransactionBuilderFieldsDetail transaction_builder = 1;
6700
+ * @return {!Array<!proto.TransactionBuilderFieldsDetail>}
6115
6701
  */
6116
6702
  proto.GetBiddingDetailResponse.prototype.getTransactionBuilderList = function() {
6117
- return /** @type{!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} */ (
6703
+ return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
6118
6704
  jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
6119
6705
  };
6120
6706
 
6121
6707
 
6122
6708
  /**
6123
- * @param {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} value
6709
+ * @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
6124
6710
  * @return {!proto.GetBiddingDetailResponse} returns this
6125
6711
  */
6126
6712
  proto.GetBiddingDetailResponse.prototype.setTransactionBuilderList = function(value) {
@@ -6129,12 +6715,12 @@ proto.GetBiddingDetailResponse.prototype.setTransactionBuilderList = function(va
6129
6715
 
6130
6716
 
6131
6717
  /**
6132
- * @param {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail=} opt_value
6718
+ * @param {!proto.TransactionBuilderFieldsDetail=} opt_value
6133
6719
  * @param {number=} opt_index
6134
- * @return {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail}
6720
+ * @return {!proto.TransactionBuilderFieldsDetail}
6135
6721
  */
6136
6722
  proto.GetBiddingDetailResponse.prototype.addTransactionBuilder = function(opt_value, opt_index) {
6137
- return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail, opt_index);
6723
+ return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
6138
6724
  };
6139
6725
 
6140
6726
 
@@ -6338,17 +6924,17 @@ proto.GetQuotationDetailPreload.serializeBinaryToWriter = function(message, writ
6338
6924
 
6339
6925
 
6340
6926
  /**
6341
- * repeated prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail transaction_builder = 1;
6342
- * @return {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>}
6927
+ * repeated TransactionBuilderFieldsDetail transaction_builder = 1;
6928
+ * @return {!Array<!proto.TransactionBuilderFieldsDetail>}
6343
6929
  */
6344
6930
  proto.GetQuotationDetailPreload.prototype.getTransactionBuilderList = function() {
6345
- return /** @type{!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} */ (
6931
+ return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
6346
6932
  jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
6347
6933
  };
6348
6934
 
6349
6935
 
6350
6936
  /**
6351
- * @param {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} value
6937
+ * @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
6352
6938
  * @return {!proto.GetQuotationDetailPreload} returns this
6353
6939
  */
6354
6940
  proto.GetQuotationDetailPreload.prototype.setTransactionBuilderList = function(value) {
@@ -6357,12 +6943,12 @@ proto.GetQuotationDetailPreload.prototype.setTransactionBuilderList = function(v
6357
6943
 
6358
6944
 
6359
6945
  /**
6360
- * @param {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail=} opt_value
6946
+ * @param {!proto.TransactionBuilderFieldsDetail=} opt_value
6361
6947
  * @param {number=} opt_index
6362
- * @return {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail}
6948
+ * @return {!proto.TransactionBuilderFieldsDetail}
6363
6949
  */
6364
6950
  proto.GetQuotationDetailPreload.prototype.addTransactionBuilder = function(opt_value, opt_index) {
6365
- return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail, opt_index);
6951
+ return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
6366
6952
  };
6367
6953
 
6368
6954
 
@@ -6589,17 +7175,17 @@ proto.GetQuotationItemPreload.serializeBinaryToWriter = function(message, writer
6589
7175
 
6590
7176
 
6591
7177
  /**
6592
- * repeated prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail transaction_builder_item = 1;
6593
- * @return {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>}
7178
+ * repeated TransactionBuilderFieldsDetail transaction_builder_item = 1;
7179
+ * @return {!Array<!proto.TransactionBuilderFieldsDetail>}
6594
7180
  */
6595
7181
  proto.GetQuotationItemPreload.prototype.getTransactionBuilderItemList = function() {
6596
- return /** @type{!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} */ (
7182
+ return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
6597
7183
  jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
6598
7184
  };
6599
7185
 
6600
7186
 
6601
7187
  /**
6602
- * @param {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} value
7188
+ * @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
6603
7189
  * @return {!proto.GetQuotationItemPreload} returns this
6604
7190
  */
6605
7191
  proto.GetQuotationItemPreload.prototype.setTransactionBuilderItemList = function(value) {
@@ -6608,12 +7194,12 @@ proto.GetQuotationItemPreload.prototype.setTransactionBuilderItemList = function
6608
7194
 
6609
7195
 
6610
7196
  /**
6611
- * @param {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail=} opt_value
7197
+ * @param {!proto.TransactionBuilderFieldsDetail=} opt_value
6612
7198
  * @param {number=} opt_index
6613
- * @return {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail}
7199
+ * @return {!proto.TransactionBuilderFieldsDetail}
6614
7200
  */
6615
7201
  proto.GetQuotationItemPreload.prototype.addTransactionBuilderItem = function(opt_value, opt_index) {
6616
- return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail, opt_index);
7202
+ return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
6617
7203
  };
6618
7204
 
6619
7205
 
@@ -6787,17 +7373,17 @@ proto.GetQuotationItemDetailPreload.serializeBinaryToWriter = function(message,
6787
7373
 
6788
7374
 
6789
7375
  /**
6790
- * repeated prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail transaction_builder_item_detail = 1;
6791
- * @return {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>}
7376
+ * repeated TransactionBuilderFieldsDetail transaction_builder_item_detail = 1;
7377
+ * @return {!Array<!proto.TransactionBuilderFieldsDetail>}
6792
7378
  */
6793
7379
  proto.GetQuotationItemDetailPreload.prototype.getTransactionBuilderItemDetailList = function() {
6794
- return /** @type{!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} */ (
7380
+ return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
6795
7381
  jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
6796
7382
  };
6797
7383
 
6798
7384
 
6799
7385
  /**
6800
- * @param {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} value
7386
+ * @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
6801
7387
  * @return {!proto.GetQuotationItemDetailPreload} returns this
6802
7388
  */
6803
7389
  proto.GetQuotationItemDetailPreload.prototype.setTransactionBuilderItemDetailList = function(value) {
@@ -6806,12 +7392,12 @@ proto.GetQuotationItemDetailPreload.prototype.setTransactionBuilderItemDetailLis
6806
7392
 
6807
7393
 
6808
7394
  /**
6809
- * @param {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail=} opt_value
7395
+ * @param {!proto.TransactionBuilderFieldsDetail=} opt_value
6810
7396
  * @param {number=} opt_index
6811
- * @return {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail}
7397
+ * @return {!proto.TransactionBuilderFieldsDetail}
6812
7398
  */
6813
7399
  proto.GetQuotationItemDetailPreload.prototype.addTransactionBuilderItemDetail = function(opt_value, opt_index) {
6814
- return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail, opt_index);
7400
+ return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
6815
7401
  };
6816
7402
 
6817
7403
 
@@ -6947,17 +7533,17 @@ proto.GetQuotationVendorPreload.serializeBinaryToWriter = function(message, writ
6947
7533
 
6948
7534
 
6949
7535
  /**
6950
- * repeated prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail transaction_builder_vendor = 1;
6951
- * @return {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>}
7536
+ * repeated TransactionBuilderFieldsDetail transaction_builder_vendor = 1;
7537
+ * @return {!Array<!proto.TransactionBuilderFieldsDetail>}
6952
7538
  */
6953
7539
  proto.GetQuotationVendorPreload.prototype.getTransactionBuilderVendorList = function() {
6954
- return /** @type{!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} */ (
7540
+ return /** @type{!Array<!proto.TransactionBuilderFieldsDetail>} */ (
6955
7541
  jspb.Message.getRepeatedWrapperField(this, prisca_v1_core_transaction_builder_transaction_builder_pb.TransactionBuilderFieldsDetail, 1));
6956
7542
  };
6957
7543
 
6958
7544
 
6959
7545
  /**
6960
- * @param {!Array<!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail>} value
7546
+ * @param {!Array<!proto.TransactionBuilderFieldsDetail>} value
6961
7547
  * @return {!proto.GetQuotationVendorPreload} returns this
6962
7548
  */
6963
7549
  proto.GetQuotationVendorPreload.prototype.setTransactionBuilderVendorList = function(value) {
@@ -6966,12 +7552,12 @@ proto.GetQuotationVendorPreload.prototype.setTransactionBuilderVendorList = func
6966
7552
 
6967
7553
 
6968
7554
  /**
6969
- * @param {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail=} opt_value
7555
+ * @param {!proto.TransactionBuilderFieldsDetail=} opt_value
6970
7556
  * @param {number=} opt_index
6971
- * @return {!proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail}
7557
+ * @return {!proto.TransactionBuilderFieldsDetail}
6972
7558
  */
6973
7559
  proto.GetQuotationVendorPreload.prototype.addTransactionBuilderVendor = function(opt_value, opt_index) {
6974
- return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.prisca.v1.core.transaction_builder.TransactionBuilderFieldsDetail, opt_index);
7560
+ return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.TransactionBuilderFieldsDetail, opt_index);
6975
7561
  };
6976
7562
 
6977
7563
 
@@ -7335,6 +7921,13 @@ proto.RequestPO.prototype.setQuotationReferences = function(value) {
7335
7921
 
7336
7922
 
7337
7923
 
7924
+ /**
7925
+ * List of repeated fields within this message type.
7926
+ * @private {!Array<number>}
7927
+ * @const
7928
+ */
7929
+ proto.ResponseRequestPo.repeatedFields_ = [1];
7930
+
7338
7931
 
7339
7932
 
7340
7933
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -7366,6 +7959,7 @@ proto.ResponseRequestPo.prototype.toObject = function(opt_includeInstance) {
7366
7959
  */
7367
7960
  proto.ResponseRequestPo.toObject = function(includeInstance, msg) {
7368
7961
  var f, obj = {
7962
+ poNumbersList: (f = jspb.Message.getRepeatedField(msg, 1)) == null ? undefined : f,
7369
7963
  meta: (f = msg.getMeta()) && prisca_v1_global_meta_meta_pb.Meta.toObject(includeInstance, f)
7370
7964
  };
7371
7965
 
@@ -7403,6 +7997,10 @@ proto.ResponseRequestPo.deserializeBinaryFromReader = function(msg, reader) {
7403
7997
  }
7404
7998
  var field = reader.getFieldNumber();
7405
7999
  switch (field) {
8000
+ case 1:
8001
+ var value = /** @type {string} */ (reader.readString());
8002
+ msg.addPoNumbers(value);
8003
+ break;
7406
8004
  case 2:
7407
8005
  var value = new prisca_v1_global_meta_meta_pb.Meta;
7408
8006
  reader.readMessage(value,prisca_v1_global_meta_meta_pb.Meta.deserializeBinaryFromReader);
@@ -7437,6 +8035,13 @@ proto.ResponseRequestPo.prototype.serializeBinary = function() {
7437
8035
  */
7438
8036
  proto.ResponseRequestPo.serializeBinaryToWriter = function(message, writer) {
7439
8037
  var f = undefined;
8038
+ f = message.getPoNumbersList();
8039
+ if (f.length > 0) {
8040
+ writer.writeRepeatedString(
8041
+ 1,
8042
+ f
8043
+ );
8044
+ }
7440
8045
  f = message.getMeta();
7441
8046
  if (f != null) {
7442
8047
  writer.writeMessage(
@@ -7448,6 +8053,43 @@ proto.ResponseRequestPo.serializeBinaryToWriter = function(message, writer) {
7448
8053
  };
7449
8054
 
7450
8055
 
8056
+ /**
8057
+ * repeated string po_numbers = 1;
8058
+ * @return {!Array<string>}
8059
+ */
8060
+ proto.ResponseRequestPo.prototype.getPoNumbersList = function() {
8061
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 1));
8062
+ };
8063
+
8064
+
8065
+ /**
8066
+ * @param {!Array<string>} value
8067
+ * @return {!proto.ResponseRequestPo} returns this
8068
+ */
8069
+ proto.ResponseRequestPo.prototype.setPoNumbersList = function(value) {
8070
+ return jspb.Message.setField(this, 1, value || []);
8071
+ };
8072
+
8073
+
8074
+ /**
8075
+ * @param {string} value
8076
+ * @param {number=} opt_index
8077
+ * @return {!proto.ResponseRequestPo} returns this
8078
+ */
8079
+ proto.ResponseRequestPo.prototype.addPoNumbers = function(value, opt_index) {
8080
+ return jspb.Message.addToRepeatedField(this, 1, value, opt_index);
8081
+ };
8082
+
8083
+
8084
+ /**
8085
+ * Clears the list making it empty but non-null.
8086
+ * @return {!proto.ResponseRequestPo} returns this
8087
+ */
8088
+ proto.ResponseRequestPo.prototype.clearPoNumbersList = function() {
8089
+ return this.setPoNumbersList([]);
8090
+ };
8091
+
8092
+
7451
8093
  /**
7452
8094
  * optional prisca.v1.global.meta.Meta meta = 2;
7453
8095
  * @return {?proto.prisca.v1.global.meta.Meta}
@@ -7485,4 +8127,341 @@ proto.ResponseRequestPo.prototype.hasMeta = function() {
7485
8127
  };
7486
8128
 
7487
8129
 
8130
+
8131
+ /**
8132
+ * List of repeated fields within this message type.
8133
+ * @private {!Array<number>}
8134
+ * @const
8135
+ */
8136
+ proto.DeleteVendorBiddingReq.repeatedFields_ = [2];
8137
+
8138
+
8139
+
8140
+ if (jspb.Message.GENERATE_TO_OBJECT) {
8141
+ /**
8142
+ * Creates an object representation of this proto.
8143
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
8144
+ * Optional fields that are not set will be set to undefined.
8145
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
8146
+ * For the list of reserved names please see:
8147
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
8148
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
8149
+ * JSPB instance for transitional soy proto support:
8150
+ * http://goto/soy-param-migration
8151
+ * @return {!Object}
8152
+ */
8153
+ proto.DeleteVendorBiddingReq.prototype.toObject = function(opt_includeInstance) {
8154
+ return proto.DeleteVendorBiddingReq.toObject(opt_includeInstance, this);
8155
+ };
8156
+
8157
+
8158
+ /**
8159
+ * Static version of the {@see toObject} method.
8160
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
8161
+ * the JSPB instance for transitional soy proto support:
8162
+ * http://goto/soy-param-migration
8163
+ * @param {!proto.DeleteVendorBiddingReq} msg The msg instance to transform.
8164
+ * @return {!Object}
8165
+ * @suppress {unusedLocalVariables} f is only used for nested messages
8166
+ */
8167
+ proto.DeleteVendorBiddingReq.toObject = function(includeInstance, msg) {
8168
+ var f, obj = {
8169
+ biddingReferenceId: jspb.Message.getFieldWithDefault(msg, 1, ""),
8170
+ vendorReferenceIdsList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f
8171
+ };
8172
+
8173
+ if (includeInstance) {
8174
+ obj.$jspbMessageInstance = msg;
8175
+ }
8176
+ return obj;
8177
+ };
8178
+ }
8179
+
8180
+
8181
+ /**
8182
+ * Deserializes binary data (in protobuf wire format).
8183
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
8184
+ * @return {!proto.DeleteVendorBiddingReq}
8185
+ */
8186
+ proto.DeleteVendorBiddingReq.deserializeBinary = function(bytes) {
8187
+ var reader = new jspb.BinaryReader(bytes);
8188
+ var msg = new proto.DeleteVendorBiddingReq;
8189
+ return proto.DeleteVendorBiddingReq.deserializeBinaryFromReader(msg, reader);
8190
+ };
8191
+
8192
+
8193
+ /**
8194
+ * Deserializes binary data (in protobuf wire format) from the
8195
+ * given reader into the given message object.
8196
+ * @param {!proto.DeleteVendorBiddingReq} msg The message object to deserialize into.
8197
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
8198
+ * @return {!proto.DeleteVendorBiddingReq}
8199
+ */
8200
+ proto.DeleteVendorBiddingReq.deserializeBinaryFromReader = function(msg, reader) {
8201
+ while (reader.nextField()) {
8202
+ if (reader.isEndGroup()) {
8203
+ break;
8204
+ }
8205
+ var field = reader.getFieldNumber();
8206
+ switch (field) {
8207
+ case 1:
8208
+ var value = /** @type {string} */ (reader.readString());
8209
+ msg.setBiddingReferenceId(value);
8210
+ break;
8211
+ case 2:
8212
+ var value = /** @type {string} */ (reader.readString());
8213
+ msg.addVendorReferenceIds(value);
8214
+ break;
8215
+ default:
8216
+ reader.skipField();
8217
+ break;
8218
+ }
8219
+ }
8220
+ return msg;
8221
+ };
8222
+
8223
+
8224
+ /**
8225
+ * Serializes the message to binary data (in protobuf wire format).
8226
+ * @return {!Uint8Array}
8227
+ */
8228
+ proto.DeleteVendorBiddingReq.prototype.serializeBinary = function() {
8229
+ var writer = new jspb.BinaryWriter();
8230
+ proto.DeleteVendorBiddingReq.serializeBinaryToWriter(this, writer);
8231
+ return writer.getResultBuffer();
8232
+ };
8233
+
8234
+
8235
+ /**
8236
+ * Serializes the given message to binary data (in protobuf wire
8237
+ * format), writing to the given BinaryWriter.
8238
+ * @param {!proto.DeleteVendorBiddingReq} message
8239
+ * @param {!jspb.BinaryWriter} writer
8240
+ * @suppress {unusedLocalVariables} f is only used for nested messages
8241
+ */
8242
+ proto.DeleteVendorBiddingReq.serializeBinaryToWriter = function(message, writer) {
8243
+ var f = undefined;
8244
+ f = message.getBiddingReferenceId();
8245
+ if (f.length > 0) {
8246
+ writer.writeString(
8247
+ 1,
8248
+ f
8249
+ );
8250
+ }
8251
+ f = message.getVendorReferenceIdsList();
8252
+ if (f.length > 0) {
8253
+ writer.writeRepeatedString(
8254
+ 2,
8255
+ f
8256
+ );
8257
+ }
8258
+ };
8259
+
8260
+
8261
+ /**
8262
+ * optional string bidding_reference_id = 1;
8263
+ * @return {string}
8264
+ */
8265
+ proto.DeleteVendorBiddingReq.prototype.getBiddingReferenceId = function() {
8266
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
8267
+ };
8268
+
8269
+
8270
+ /**
8271
+ * @param {string} value
8272
+ * @return {!proto.DeleteVendorBiddingReq} returns this
8273
+ */
8274
+ proto.DeleteVendorBiddingReq.prototype.setBiddingReferenceId = function(value) {
8275
+ return jspb.Message.setProto3StringField(this, 1, value);
8276
+ };
8277
+
8278
+
8279
+ /**
8280
+ * repeated string vendor_reference_ids = 2;
8281
+ * @return {!Array<string>}
8282
+ */
8283
+ proto.DeleteVendorBiddingReq.prototype.getVendorReferenceIdsList = function() {
8284
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 2));
8285
+ };
8286
+
8287
+
8288
+ /**
8289
+ * @param {!Array<string>} value
8290
+ * @return {!proto.DeleteVendorBiddingReq} returns this
8291
+ */
8292
+ proto.DeleteVendorBiddingReq.prototype.setVendorReferenceIdsList = function(value) {
8293
+ return jspb.Message.setField(this, 2, value || []);
8294
+ };
8295
+
8296
+
8297
+ /**
8298
+ * @param {string} value
8299
+ * @param {number=} opt_index
8300
+ * @return {!proto.DeleteVendorBiddingReq} returns this
8301
+ */
8302
+ proto.DeleteVendorBiddingReq.prototype.addVendorReferenceIds = function(value, opt_index) {
8303
+ return jspb.Message.addToRepeatedField(this, 2, value, opt_index);
8304
+ };
8305
+
8306
+
8307
+ /**
8308
+ * Clears the list making it empty but non-null.
8309
+ * @return {!proto.DeleteVendorBiddingReq} returns this
8310
+ */
8311
+ proto.DeleteVendorBiddingReq.prototype.clearVendorReferenceIdsList = function() {
8312
+ return this.setVendorReferenceIdsList([]);
8313
+ };
8314
+
8315
+
8316
+
8317
+
8318
+
8319
+ if (jspb.Message.GENERATE_TO_OBJECT) {
8320
+ /**
8321
+ * Creates an object representation of this proto.
8322
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
8323
+ * Optional fields that are not set will be set to undefined.
8324
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
8325
+ * For the list of reserved names please see:
8326
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
8327
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
8328
+ * JSPB instance for transitional soy proto support:
8329
+ * http://goto/soy-param-migration
8330
+ * @return {!Object}
8331
+ */
8332
+ proto.DeleteVendorBiddingRes.prototype.toObject = function(opt_includeInstance) {
8333
+ return proto.DeleteVendorBiddingRes.toObject(opt_includeInstance, this);
8334
+ };
8335
+
8336
+
8337
+ /**
8338
+ * Static version of the {@see toObject} method.
8339
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
8340
+ * the JSPB instance for transitional soy proto support:
8341
+ * http://goto/soy-param-migration
8342
+ * @param {!proto.DeleteVendorBiddingRes} msg The msg instance to transform.
8343
+ * @return {!Object}
8344
+ * @suppress {unusedLocalVariables} f is only used for nested messages
8345
+ */
8346
+ proto.DeleteVendorBiddingRes.toObject = function(includeInstance, msg) {
8347
+ var f, obj = {
8348
+ meta: (f = msg.getMeta()) && prisca_v1_global_meta_meta_pb.Meta.toObject(includeInstance, f)
8349
+ };
8350
+
8351
+ if (includeInstance) {
8352
+ obj.$jspbMessageInstance = msg;
8353
+ }
8354
+ return obj;
8355
+ };
8356
+ }
8357
+
8358
+
8359
+ /**
8360
+ * Deserializes binary data (in protobuf wire format).
8361
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
8362
+ * @return {!proto.DeleteVendorBiddingRes}
8363
+ */
8364
+ proto.DeleteVendorBiddingRes.deserializeBinary = function(bytes) {
8365
+ var reader = new jspb.BinaryReader(bytes);
8366
+ var msg = new proto.DeleteVendorBiddingRes;
8367
+ return proto.DeleteVendorBiddingRes.deserializeBinaryFromReader(msg, reader);
8368
+ };
8369
+
8370
+
8371
+ /**
8372
+ * Deserializes binary data (in protobuf wire format) from the
8373
+ * given reader into the given message object.
8374
+ * @param {!proto.DeleteVendorBiddingRes} msg The message object to deserialize into.
8375
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
8376
+ * @return {!proto.DeleteVendorBiddingRes}
8377
+ */
8378
+ proto.DeleteVendorBiddingRes.deserializeBinaryFromReader = function(msg, reader) {
8379
+ while (reader.nextField()) {
8380
+ if (reader.isEndGroup()) {
8381
+ break;
8382
+ }
8383
+ var field = reader.getFieldNumber();
8384
+ switch (field) {
8385
+ case 1:
8386
+ var value = new prisca_v1_global_meta_meta_pb.Meta;
8387
+ reader.readMessage(value,prisca_v1_global_meta_meta_pb.Meta.deserializeBinaryFromReader);
8388
+ msg.setMeta(value);
8389
+ break;
8390
+ default:
8391
+ reader.skipField();
8392
+ break;
8393
+ }
8394
+ }
8395
+ return msg;
8396
+ };
8397
+
8398
+
8399
+ /**
8400
+ * Serializes the message to binary data (in protobuf wire format).
8401
+ * @return {!Uint8Array}
8402
+ */
8403
+ proto.DeleteVendorBiddingRes.prototype.serializeBinary = function() {
8404
+ var writer = new jspb.BinaryWriter();
8405
+ proto.DeleteVendorBiddingRes.serializeBinaryToWriter(this, writer);
8406
+ return writer.getResultBuffer();
8407
+ };
8408
+
8409
+
8410
+ /**
8411
+ * Serializes the given message to binary data (in protobuf wire
8412
+ * format), writing to the given BinaryWriter.
8413
+ * @param {!proto.DeleteVendorBiddingRes} message
8414
+ * @param {!jspb.BinaryWriter} writer
8415
+ * @suppress {unusedLocalVariables} f is only used for nested messages
8416
+ */
8417
+ proto.DeleteVendorBiddingRes.serializeBinaryToWriter = function(message, writer) {
8418
+ var f = undefined;
8419
+ f = message.getMeta();
8420
+ if (f != null) {
8421
+ writer.writeMessage(
8422
+ 1,
8423
+ f,
8424
+ prisca_v1_global_meta_meta_pb.Meta.serializeBinaryToWriter
8425
+ );
8426
+ }
8427
+ };
8428
+
8429
+
8430
+ /**
8431
+ * optional prisca.v1.global.meta.Meta meta = 1;
8432
+ * @return {?proto.prisca.v1.global.meta.Meta}
8433
+ */
8434
+ proto.DeleteVendorBiddingRes.prototype.getMeta = function() {
8435
+ return /** @type{?proto.prisca.v1.global.meta.Meta} */ (
8436
+ jspb.Message.getWrapperField(this, prisca_v1_global_meta_meta_pb.Meta, 1));
8437
+ };
8438
+
8439
+
8440
+ /**
8441
+ * @param {?proto.prisca.v1.global.meta.Meta|undefined} value
8442
+ * @return {!proto.DeleteVendorBiddingRes} returns this
8443
+ */
8444
+ proto.DeleteVendorBiddingRes.prototype.setMeta = function(value) {
8445
+ return jspb.Message.setWrapperField(this, 1, value);
8446
+ };
8447
+
8448
+
8449
+ /**
8450
+ * Clears the message field making it undefined.
8451
+ * @return {!proto.DeleteVendorBiddingRes} returns this
8452
+ */
8453
+ proto.DeleteVendorBiddingRes.prototype.clearMeta = function() {
8454
+ return this.setMeta(undefined);
8455
+ };
8456
+
8457
+
8458
+ /**
8459
+ * Returns whether this field is set.
8460
+ * @return {boolean}
8461
+ */
8462
+ proto.DeleteVendorBiddingRes.prototype.hasMeta = function() {
8463
+ return jspb.Message.getField(this, 1) != null;
8464
+ };
8465
+
8466
+
7488
8467
  goog.object.extend(exports, proto);