@alexochihua/protos 1.0.4 → 1.0.5
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/package.json
CHANGED
|
@@ -35,65 +35,66 @@ service ContractsService {
|
|
|
35
35
|
// ================== CreateContract ==================
|
|
36
36
|
message CreateContractRequest {
|
|
37
37
|
string customer_id = 1;
|
|
38
|
-
string
|
|
39
|
-
|
|
40
|
-
string
|
|
41
|
-
string
|
|
38
|
+
string clabe = 2;
|
|
39
|
+
string first_name = 3;
|
|
40
|
+
optional string middle_name = 4;
|
|
41
|
+
string last_name = 5;
|
|
42
|
+
string date_of_birth = 6;
|
|
42
43
|
|
|
43
|
-
string address_1 =
|
|
44
|
-
string address_2 =
|
|
45
|
-
string address_3 =
|
|
46
|
-
string city =
|
|
47
|
-
string state =
|
|
48
|
-
string postal_code =
|
|
49
|
-
string country_code =
|
|
44
|
+
string address_1 = 7;
|
|
45
|
+
string address_2 = 8;
|
|
46
|
+
string address_3 = 9;
|
|
47
|
+
string city = 10;
|
|
48
|
+
string state = 11;
|
|
49
|
+
string postal_code = 12;
|
|
50
|
+
string country_code = 13;
|
|
50
51
|
|
|
51
|
-
string primary_phone =
|
|
52
|
-
optional string other_phone =
|
|
52
|
+
string primary_phone = 14;
|
|
53
|
+
optional string other_phone = 15;
|
|
53
54
|
|
|
54
|
-
string email =
|
|
55
|
+
string email = 16;
|
|
55
56
|
|
|
56
|
-
string income_source =
|
|
57
|
-
string curp =
|
|
58
|
-
string rfc =
|
|
57
|
+
string income_source = 17;
|
|
58
|
+
string curp = 18;
|
|
59
|
+
string rfc = 19;
|
|
59
60
|
|
|
60
|
-
optional string external_customer_id =
|
|
61
|
+
optional string external_customer_id = 20;
|
|
61
62
|
|
|
62
|
-
string product_key =
|
|
63
|
-
string product_type =
|
|
64
|
-
string load_amount =
|
|
65
|
-
optional string load_amount_physical =
|
|
63
|
+
string product_key = 21;
|
|
64
|
+
string product_type = 22;
|
|
65
|
+
string load_amount = 23;
|
|
66
|
+
optional string load_amount_physical = 24;
|
|
66
67
|
|
|
67
|
-
optional string load_type =
|
|
68
|
-
optional string primary_account =
|
|
69
|
-
optional string funding_account_number =
|
|
70
|
-
optional int32 shared_balance =
|
|
68
|
+
optional string load_type = 25;
|
|
69
|
+
optional string primary_account = 26;
|
|
70
|
+
optional string funding_account_number = 27;
|
|
71
|
+
optional int32 shared_balance = 28;
|
|
71
72
|
|
|
72
|
-
optional string authorized_user =
|
|
73
|
-
optional string user_data =
|
|
74
|
-
optional string offline =
|
|
73
|
+
optional string authorized_user = 29;
|
|
74
|
+
optional string user_data = 30;
|
|
75
|
+
optional string offline = 31;
|
|
75
76
|
|
|
76
|
-
optional int32 verify_only =
|
|
77
|
-
optional string cip_status =
|
|
77
|
+
optional int32 verify_only = 32;
|
|
78
|
+
optional string cip_status = 33;
|
|
78
79
|
|
|
79
|
-
optional string emboss_line_2 =
|
|
80
|
+
optional string emboss_line_2 = 34;
|
|
80
81
|
|
|
81
|
-
optional double provider_assessed_fee =
|
|
82
|
+
optional double provider_assessed_fee = 35;
|
|
82
83
|
|
|
83
|
-
optional string load_from_account =
|
|
84
|
-
optional string sweep_date =
|
|
84
|
+
optional string load_from_account = 36;
|
|
85
|
+
optional string sweep_date = 37;
|
|
85
86
|
|
|
86
|
-
optional string express_mail =
|
|
87
|
+
optional string express_mail = 38;
|
|
87
88
|
|
|
88
|
-
optional string ship_adress_permanent =
|
|
89
|
-
optional string ship_adress_1 =
|
|
90
|
-
optional string ship_adress_2 =
|
|
91
|
-
optional string shitp_city =
|
|
92
|
-
optional string ship_state =
|
|
93
|
-
optional string ship_zip =
|
|
94
|
-
optional string ship_country_code =
|
|
89
|
+
optional string ship_adress_permanent = 39;
|
|
90
|
+
optional string ship_adress_1 = 40;
|
|
91
|
+
optional string ship_adress_2 = 41;
|
|
92
|
+
optional string shitp_city = 42;
|
|
93
|
+
optional string ship_state = 43;
|
|
94
|
+
optional string ship_zip = 44;
|
|
95
|
+
optional string ship_country_code = 45;
|
|
95
96
|
|
|
96
|
-
optional string business_name =
|
|
97
|
+
optional string business_name = 46;
|
|
97
98
|
}
|
|
98
99
|
|
|
99
100
|
message CreateContractResponse {
|
|
@@ -118,65 +119,66 @@ message CreateContractResponse {
|
|
|
118
119
|
// ================== CreatePhysicalCardContract ==================
|
|
119
120
|
message CreatePhysicalCardContractRequest {
|
|
120
121
|
string customer_id = 1;
|
|
121
|
-
string
|
|
122
|
-
|
|
123
|
-
string
|
|
124
|
-
string
|
|
122
|
+
string clabe = 2;
|
|
123
|
+
string first_name = 3;
|
|
124
|
+
optional string middle_name = 4;
|
|
125
|
+
string last_name = 5;
|
|
126
|
+
string date_of_birth = 6;
|
|
125
127
|
|
|
126
|
-
string address_1 =
|
|
127
|
-
string address_2 =
|
|
128
|
-
string address_3 =
|
|
129
|
-
string city =
|
|
130
|
-
string state =
|
|
131
|
-
string postal_code =
|
|
132
|
-
string country_code =
|
|
128
|
+
string address_1 = 7;
|
|
129
|
+
string address_2 = 8;
|
|
130
|
+
string address_3 = 9;
|
|
131
|
+
string city = 10;
|
|
132
|
+
string state = 11;
|
|
133
|
+
string postal_code = 12;
|
|
134
|
+
string country_code = 13;
|
|
133
135
|
|
|
134
|
-
string primary_phone =
|
|
135
|
-
optional string other_phone =
|
|
136
|
+
string primary_phone = 14;
|
|
137
|
+
optional string other_phone = 15;
|
|
136
138
|
|
|
137
|
-
string email =
|
|
139
|
+
string email = 16;
|
|
138
140
|
|
|
139
|
-
string income_source =
|
|
140
|
-
string curp =
|
|
141
|
-
string rfc =
|
|
141
|
+
string income_source = 17;
|
|
142
|
+
string curp = 18;
|
|
143
|
+
string rfc = 19;
|
|
142
144
|
|
|
143
|
-
optional string external_customer_id =
|
|
145
|
+
optional string external_customer_id = 20;
|
|
144
146
|
|
|
145
|
-
string product_key =
|
|
146
|
-
string product_type =
|
|
147
|
-
string load_amount =
|
|
148
|
-
optional string load_amount_physical =
|
|
147
|
+
string product_key = 21;
|
|
148
|
+
string product_type = 22;
|
|
149
|
+
string load_amount = 23;
|
|
150
|
+
optional string load_amount_physical = 24;
|
|
149
151
|
|
|
150
|
-
optional string load_type =
|
|
151
|
-
optional string primary_account =
|
|
152
|
-
optional string funding_account_number =
|
|
153
|
-
optional int32 shared_balance =
|
|
152
|
+
optional string load_type = 25;
|
|
153
|
+
optional string primary_account = 26;
|
|
154
|
+
optional string funding_account_number = 27;
|
|
155
|
+
optional int32 shared_balance = 28;
|
|
154
156
|
|
|
155
|
-
optional string authorized_user =
|
|
156
|
-
optional string user_data =
|
|
157
|
-
optional string offline =
|
|
157
|
+
optional string authorized_user = 29;
|
|
158
|
+
optional string user_data = 30;
|
|
159
|
+
optional string offline = 31;
|
|
158
160
|
|
|
159
|
-
optional int32 verify_only =
|
|
160
|
-
optional string cip_status =
|
|
161
|
+
optional int32 verify_only = 32;
|
|
162
|
+
optional string cip_status = 33;
|
|
161
163
|
|
|
162
|
-
optional string emboss_line_2 =
|
|
164
|
+
optional string emboss_line_2 = 34;
|
|
163
165
|
|
|
164
|
-
optional double provider_assessed_fee =
|
|
166
|
+
optional double provider_assessed_fee = 35;
|
|
165
167
|
|
|
166
|
-
optional string load_from_account =
|
|
167
|
-
optional string sweep_date =
|
|
168
|
+
optional string load_from_account = 36;
|
|
169
|
+
optional string sweep_date = 37;
|
|
168
170
|
|
|
169
|
-
optional string express_mail =
|
|
171
|
+
optional string express_mail = 38;
|
|
170
172
|
|
|
171
|
-
optional string ship_adress_permanent =
|
|
172
|
-
optional string ship_adress_1 =
|
|
173
|
-
optional string ship_adress_2 =
|
|
174
|
-
optional string shitp_city =
|
|
175
|
-
optional string ship_state =
|
|
176
|
-
optional string ship_zip =
|
|
177
|
-
optional string ship_country_code =
|
|
173
|
+
optional string ship_adress_permanent = 39;
|
|
174
|
+
optional string ship_adress_1 = 40;
|
|
175
|
+
optional string ship_adress_2 = 41;
|
|
176
|
+
optional string shitp_city = 42;
|
|
177
|
+
optional string ship_state = 43;
|
|
178
|
+
optional string ship_zip = 44;
|
|
179
|
+
optional string ship_country_code = 45;
|
|
178
180
|
|
|
179
|
-
optional string business_name =
|
|
181
|
+
optional string business_name = 46;
|
|
180
182
|
}
|
|
181
183
|
|
|
182
184
|
message CreatePhysicalCardContractResponse {
|