@technova-tech/olive-proto-lib 1.8.8 → 1.8.9
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 +1 -1
- package/pos.v1/terminals.js +460 -0
- package/terminal/terminal.js +160 -0
- package/types/pos.v1/terminals.d.ts +115 -0
- package/types/terminal/terminal.d.ts +40 -0
|
@@ -935,6 +935,7 @@ export declare namespace com.pkg.terminal {
|
|
|
935
935
|
compatibleSoftware?: string[];
|
|
936
936
|
warrantyMonths?: number;
|
|
937
937
|
createdBy?: string;
|
|
938
|
+
auditContext?: string;
|
|
938
939
|
});
|
|
939
940
|
get deviceType(): string;
|
|
940
941
|
set deviceType(value: string);
|
|
@@ -964,6 +965,8 @@ export declare namespace com.pkg.terminal {
|
|
|
964
965
|
set warrantyMonths(value: number);
|
|
965
966
|
get createdBy(): string;
|
|
966
967
|
set createdBy(value: string);
|
|
968
|
+
get auditContext(): string;
|
|
969
|
+
set auditContext(value: string);
|
|
967
970
|
static fromObject(data: {
|
|
968
971
|
deviceType?: string;
|
|
969
972
|
manufacturer?: string;
|
|
@@ -979,6 +982,7 @@ export declare namespace com.pkg.terminal {
|
|
|
979
982
|
compatibleSoftware?: string[];
|
|
980
983
|
warrantyMonths?: number;
|
|
981
984
|
createdBy?: string;
|
|
985
|
+
auditContext?: string;
|
|
982
986
|
}): AddTerminalTypeRequest;
|
|
983
987
|
toObject(): {
|
|
984
988
|
deviceType?: string | undefined;
|
|
@@ -995,6 +999,7 @@ export declare namespace com.pkg.terminal {
|
|
|
995
999
|
compatibleSoftware?: string[] | undefined;
|
|
996
1000
|
warrantyMonths?: number | undefined;
|
|
997
1001
|
createdBy?: string | undefined;
|
|
1002
|
+
auditContext?: string | undefined;
|
|
998
1003
|
};
|
|
999
1004
|
serialize(): Uint8Array;
|
|
1000
1005
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -1086,6 +1091,7 @@ export declare namespace com.pkg.terminal {
|
|
|
1086
1091
|
warrantyMonths?: number;
|
|
1087
1092
|
discontinuedReason?: string;
|
|
1088
1093
|
updatedBy?: string;
|
|
1094
|
+
auditContext?: string;
|
|
1089
1095
|
});
|
|
1090
1096
|
get id(): string;
|
|
1091
1097
|
set id(value: string);
|
|
@@ -1113,6 +1119,8 @@ export declare namespace com.pkg.terminal {
|
|
|
1113
1119
|
set discontinuedReason(value: string);
|
|
1114
1120
|
get updatedBy(): string;
|
|
1115
1121
|
set updatedBy(value: string);
|
|
1122
|
+
get auditContext(): string;
|
|
1123
|
+
set auditContext(value: string);
|
|
1116
1124
|
static fromObject(data: {
|
|
1117
1125
|
id?: string;
|
|
1118
1126
|
price?: number;
|
|
@@ -1127,6 +1135,7 @@ export declare namespace com.pkg.terminal {
|
|
|
1127
1135
|
warrantyMonths?: number;
|
|
1128
1136
|
discontinuedReason?: string;
|
|
1129
1137
|
updatedBy?: string;
|
|
1138
|
+
auditContext?: string;
|
|
1130
1139
|
}): UpdateTerminalTypeRequest;
|
|
1131
1140
|
toObject(): {
|
|
1132
1141
|
id?: string | undefined;
|
|
@@ -1142,6 +1151,7 @@ export declare namespace com.pkg.terminal {
|
|
|
1142
1151
|
warrantyMonths?: number | undefined;
|
|
1143
1152
|
discontinuedReason?: string | undefined;
|
|
1144
1153
|
updatedBy?: string | undefined;
|
|
1154
|
+
auditContext?: string | undefined;
|
|
1145
1155
|
};
|
|
1146
1156
|
serialize(): Uint8Array;
|
|
1147
1157
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -1155,6 +1165,7 @@ export declare namespace com.pkg.terminal {
|
|
|
1155
1165
|
id?: string;
|
|
1156
1166
|
reason?: string;
|
|
1157
1167
|
discontinuedBy?: string;
|
|
1168
|
+
auditContext?: string;
|
|
1158
1169
|
});
|
|
1159
1170
|
get id(): string;
|
|
1160
1171
|
set id(value: string);
|
|
@@ -1162,15 +1173,19 @@ export declare namespace com.pkg.terminal {
|
|
|
1162
1173
|
set reason(value: string);
|
|
1163
1174
|
get discontinuedBy(): string;
|
|
1164
1175
|
set discontinuedBy(value: string);
|
|
1176
|
+
get auditContext(): string;
|
|
1177
|
+
set auditContext(value: string);
|
|
1165
1178
|
static fromObject(data: {
|
|
1166
1179
|
id?: string;
|
|
1167
1180
|
reason?: string;
|
|
1168
1181
|
discontinuedBy?: string;
|
|
1182
|
+
auditContext?: string;
|
|
1169
1183
|
}): DiscontinueRequest;
|
|
1170
1184
|
toObject(): {
|
|
1171
1185
|
id?: string | undefined;
|
|
1172
1186
|
reason?: string | undefined;
|
|
1173
1187
|
discontinuedBy?: string | undefined;
|
|
1188
|
+
auditContext?: string | undefined;
|
|
1174
1189
|
};
|
|
1175
1190
|
serialize(): Uint8Array;
|
|
1176
1191
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -1184,6 +1199,7 @@ export declare namespace com.pkg.terminal {
|
|
|
1184
1199
|
id?: string;
|
|
1185
1200
|
quantity?: number;
|
|
1186
1201
|
updatedBy?: string;
|
|
1202
|
+
auditContext?: string;
|
|
1187
1203
|
});
|
|
1188
1204
|
get id(): string;
|
|
1189
1205
|
set id(value: string);
|
|
@@ -1191,15 +1207,19 @@ export declare namespace com.pkg.terminal {
|
|
|
1191
1207
|
set quantity(value: number);
|
|
1192
1208
|
get updatedBy(): string;
|
|
1193
1209
|
set updatedBy(value: string);
|
|
1210
|
+
get auditContext(): string;
|
|
1211
|
+
set auditContext(value: string);
|
|
1194
1212
|
static fromObject(data: {
|
|
1195
1213
|
id?: string;
|
|
1196
1214
|
quantity?: number;
|
|
1197
1215
|
updatedBy?: string;
|
|
1216
|
+
auditContext?: string;
|
|
1198
1217
|
}): UpdateStockRequest;
|
|
1199
1218
|
toObject(): {
|
|
1200
1219
|
id?: string | undefined;
|
|
1201
1220
|
quantity?: number | undefined;
|
|
1202
1221
|
updatedBy?: string | undefined;
|
|
1222
|
+
auditContext?: string | undefined;
|
|
1203
1223
|
};
|
|
1204
1224
|
serialize(): Uint8Array;
|
|
1205
1225
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -1213,6 +1233,7 @@ export declare namespace com.pkg.terminal {
|
|
|
1213
1233
|
deviceType?: string;
|
|
1214
1234
|
quantity?: number;
|
|
1215
1235
|
reservedBy?: string;
|
|
1236
|
+
auditContext?: string;
|
|
1216
1237
|
});
|
|
1217
1238
|
get deviceType(): string;
|
|
1218
1239
|
set deviceType(value: string);
|
|
@@ -1220,15 +1241,19 @@ export declare namespace com.pkg.terminal {
|
|
|
1220
1241
|
set quantity(value: number);
|
|
1221
1242
|
get reservedBy(): string;
|
|
1222
1243
|
set reservedBy(value: string);
|
|
1244
|
+
get auditContext(): string;
|
|
1245
|
+
set auditContext(value: string);
|
|
1223
1246
|
static fromObject(data: {
|
|
1224
1247
|
deviceType?: string;
|
|
1225
1248
|
quantity?: number;
|
|
1226
1249
|
reservedBy?: string;
|
|
1250
|
+
auditContext?: string;
|
|
1227
1251
|
}): ReserveStockRequest;
|
|
1228
1252
|
toObject(): {
|
|
1229
1253
|
deviceType?: string | undefined;
|
|
1230
1254
|
quantity?: number | undefined;
|
|
1231
1255
|
reservedBy?: string | undefined;
|
|
1256
|
+
auditContext?: string | undefined;
|
|
1232
1257
|
};
|
|
1233
1258
|
serialize(): Uint8Array;
|
|
1234
1259
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -1242,6 +1267,7 @@ export declare namespace com.pkg.terminal {
|
|
|
1242
1267
|
deviceType?: string;
|
|
1243
1268
|
quantity?: number;
|
|
1244
1269
|
releasedBy?: string;
|
|
1270
|
+
auditContext?: string;
|
|
1245
1271
|
});
|
|
1246
1272
|
get deviceType(): string;
|
|
1247
1273
|
set deviceType(value: string);
|
|
@@ -1249,15 +1275,19 @@ export declare namespace com.pkg.terminal {
|
|
|
1249
1275
|
set quantity(value: number);
|
|
1250
1276
|
get releasedBy(): string;
|
|
1251
1277
|
set releasedBy(value: string);
|
|
1278
|
+
get auditContext(): string;
|
|
1279
|
+
set auditContext(value: string);
|
|
1252
1280
|
static fromObject(data: {
|
|
1253
1281
|
deviceType?: string;
|
|
1254
1282
|
quantity?: number;
|
|
1255
1283
|
releasedBy?: string;
|
|
1284
|
+
auditContext?: string;
|
|
1256
1285
|
}): ReleaseStockRequest;
|
|
1257
1286
|
toObject(): {
|
|
1258
1287
|
deviceType?: string | undefined;
|
|
1259
1288
|
quantity?: number | undefined;
|
|
1260
1289
|
releasedBy?: string | undefined;
|
|
1290
|
+
auditContext?: string | undefined;
|
|
1261
1291
|
};
|
|
1262
1292
|
serialize(): Uint8Array;
|
|
1263
1293
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -2037,14 +2067,19 @@ export declare namespace com.pkg.terminal {
|
|
|
2037
2067
|
#private;
|
|
2038
2068
|
constructor(data?: any[] | {
|
|
2039
2069
|
terminalId?: string;
|
|
2070
|
+
auditContext?: string;
|
|
2040
2071
|
});
|
|
2041
2072
|
get terminalId(): string;
|
|
2042
2073
|
set terminalId(value: string);
|
|
2074
|
+
get auditContext(): string;
|
|
2075
|
+
set auditContext(value: string);
|
|
2043
2076
|
static fromObject(data: {
|
|
2044
2077
|
terminalId?: string;
|
|
2078
|
+
auditContext?: string;
|
|
2045
2079
|
}): UnassignTerminalRequest;
|
|
2046
2080
|
toObject(): {
|
|
2047
2081
|
terminalId?: string | undefined;
|
|
2082
|
+
auditContext?: string | undefined;
|
|
2048
2083
|
};
|
|
2049
2084
|
serialize(): Uint8Array;
|
|
2050
2085
|
serialize(w: pb_1.BinaryWriter): void;
|
|
@@ -3435,6 +3470,7 @@ export declare namespace com.pkg.terminal {
|
|
|
3435
3470
|
notes?: string;
|
|
3436
3471
|
contractId?: string;
|
|
3437
3472
|
metadata?: Map<string, string>;
|
|
3473
|
+
auditContext?: string;
|
|
3438
3474
|
});
|
|
3439
3475
|
get serialNumber(): string;
|
|
3440
3476
|
set serialNumber(value: string);
|
|
@@ -3461,6 +3497,8 @@ export declare namespace com.pkg.terminal {
|
|
|
3461
3497
|
set contractId(value: string);
|
|
3462
3498
|
get metadata(): Map<string, string>;
|
|
3463
3499
|
set metadata(value: Map<string, string>);
|
|
3500
|
+
get auditContext(): string;
|
|
3501
|
+
set auditContext(value: string);
|
|
3464
3502
|
static fromObject(data: {
|
|
3465
3503
|
serialNumber?: string;
|
|
3466
3504
|
businessId?: string;
|
|
@@ -3476,6 +3514,7 @@ export declare namespace com.pkg.terminal {
|
|
|
3476
3514
|
metadata?: {
|
|
3477
3515
|
[key: string]: string;
|
|
3478
3516
|
};
|
|
3517
|
+
auditContext?: string;
|
|
3479
3518
|
}): TerminalAssignmentRequest;
|
|
3480
3519
|
toObject(): {
|
|
3481
3520
|
serialNumber?: string | undefined;
|
|
@@ -3497,6 +3536,7 @@ export declare namespace com.pkg.terminal {
|
|
|
3497
3536
|
metadata?: {
|
|
3498
3537
|
[key: string]: string;
|
|
3499
3538
|
} | undefined;
|
|
3539
|
+
auditContext?: string | undefined;
|
|
3500
3540
|
};
|
|
3501
3541
|
serialize(): Uint8Array;
|
|
3502
3542
|
serialize(w: pb_1.BinaryWriter): void;
|