bmlt-query-client 1.0.3 → 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/dist/app.d.ts +5 -3
- package/dist/app.js +846 -669
- package/dist/app.js.map +1 -1
- package/package.json +12 -13
package/dist/app.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export declare interface BaseSearchParams {
|
|
|
10
10
|
export declare class BmltClient {
|
|
11
11
|
private timeout;
|
|
12
12
|
private userAgent;
|
|
13
|
-
private geocodingService?;
|
|
13
|
+
private readonly geocodingService?;
|
|
14
14
|
private rootServerURL;
|
|
15
15
|
private defaultFormat;
|
|
16
16
|
constructor(options: BmltClientOptions);
|
|
@@ -536,6 +536,8 @@ export declare interface Meeting {
|
|
|
536
536
|
location_postal_code_1?: string;
|
|
537
537
|
/** Location province/state */
|
|
538
538
|
location_province?: string;
|
|
539
|
+
/** Location sub province/county */
|
|
540
|
+
location_sub_province?: string;
|
|
539
541
|
/** Location nation */
|
|
540
542
|
location_nation?: string;
|
|
541
543
|
/** Latitude */
|
|
@@ -548,10 +550,10 @@ export declare interface Meeting {
|
|
|
548
550
|
email_contact?: string;
|
|
549
551
|
/** World Committee Code */
|
|
550
552
|
worldid_mixed?: string;
|
|
551
|
-
/** Shared group ID */
|
|
552
|
-
shared_group_id_bigint?: string;
|
|
553
553
|
/** Service body ID */
|
|
554
554
|
service_body_bigint: string;
|
|
555
|
+
/** Service body Name */
|
|
556
|
+
service_body_name?: string;
|
|
555
557
|
/** Meeting formats (comma-separated format IDs) */
|
|
556
558
|
format_shared_id_list?: string;
|
|
557
559
|
/** Meeting comments */
|