@medplum/core 0.9.11 → 0.9.14
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/cjs/index.js +184 -19
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/index.min.js +1 -1
- package/dist/cjs/index.min.js.map +1 -1
- package/dist/esm/index.js +176 -20
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/index.min.js +1 -1
- package/dist/esm/index.min.js.map +1 -1
- package/dist/types/client.d.ts +8 -22
- package/dist/types/utils.d.ts +71 -1
- package/package.json +2 -2
- package/document.pdf +0 -0
- package/test.pdf +0 -1
- package/test2.pdf +0 -1
- package/test3.pdf.txt +0 -1
- package/test4.pdf +0 -1
- package/test5.pdf +0 -0
- package/test7-2.pdf +0 -1
- package/test7.pdf +0 -1
- package/test8-2.pdf +0 -0
- package/test8.pdf +0 -0
- package/test9-2.pdf +0 -0
- package/test9-3.pdf +0 -0
- package/test9-4.pdf +0 -0
- package/test9.pdf +0 -0
package/dist/types/client.d.ts
CHANGED
|
@@ -274,7 +274,7 @@ export interface MailOptions {
|
|
|
274
274
|
* Search for a `Patient` by name:
|
|
275
275
|
*
|
|
276
276
|
* ```typescript
|
|
277
|
-
* const bundle = await medplum.search('Patient
|
|
277
|
+
* const bundle = await medplum.search('Patient', 'name=Alice');
|
|
278
278
|
* console.log(bundle.total);
|
|
279
279
|
* ```
|
|
280
280
|
*/
|
|
@@ -415,28 +415,14 @@ export declare class MedplumClient extends EventTarget {
|
|
|
415
415
|
* @param query The FHIR search query or structured query object.
|
|
416
416
|
* @returns The well-formed FHIR URL.
|
|
417
417
|
*/
|
|
418
|
-
fhirSearchUrl(resourceType: ResourceType, query: URLSearchParams | string): URL;
|
|
418
|
+
fhirSearchUrl(resourceType: ResourceType, query: URLSearchParams | string | undefined): URL;
|
|
419
419
|
/**
|
|
420
420
|
* Sends a FHIR search request.
|
|
421
421
|
*
|
|
422
422
|
* Example using a FHIR search string:
|
|
423
423
|
*
|
|
424
424
|
* ```typescript
|
|
425
|
-
* const bundle = await client.search('Patient
|
|
426
|
-
* console.log(bundle);
|
|
427
|
-
* ```
|
|
428
|
-
*
|
|
429
|
-
* Example using a structured search:
|
|
430
|
-
*
|
|
431
|
-
* ```typescript
|
|
432
|
-
* const bundle = await client.search({
|
|
433
|
-
* resourceType: 'Patient',
|
|
434
|
-
* filters: [{
|
|
435
|
-
* code: 'name',
|
|
436
|
-
* operator: 'eq',
|
|
437
|
-
* value: 'Alice',
|
|
438
|
-
* }]
|
|
439
|
-
* });
|
|
425
|
+
* const bundle = await client.search('Patient', 'name=Alice');
|
|
440
426
|
* console.log(bundle);
|
|
441
427
|
* ```
|
|
442
428
|
*
|
|
@@ -470,7 +456,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
470
456
|
* @param query The search query as either a string or a structured search object.
|
|
471
457
|
* @returns Promise to the search result bundle.
|
|
472
458
|
*/
|
|
473
|
-
search<K extends ResourceType>(resourceType: K, query
|
|
459
|
+
search<K extends ResourceType>(resourceType: K, query?: URLSearchParams | string, options?: RequestInit): ReadablePromise<Bundle<ExtractResource<K>>>;
|
|
474
460
|
/**
|
|
475
461
|
* Sends a FHIR search request for a single resource.
|
|
476
462
|
*
|
|
@@ -479,7 +465,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
479
465
|
* Example using a FHIR search string:
|
|
480
466
|
*
|
|
481
467
|
* ```typescript
|
|
482
|
-
* const patient = await client.searchOne('Patient
|
|
468
|
+
* const patient = await client.searchOne('Patient', 'identifier=123');
|
|
483
469
|
* console.log(patient);
|
|
484
470
|
* ```
|
|
485
471
|
*
|
|
@@ -490,7 +476,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
490
476
|
* @param query The search query as either a string or a structured search object.
|
|
491
477
|
* @returns Promise to the search result bundle.
|
|
492
478
|
*/
|
|
493
|
-
searchOne<K extends ResourceType>(resourceType: K, query
|
|
479
|
+
searchOne<K extends ResourceType>(resourceType: K, query?: URLSearchParams | string, options?: RequestInit): ReadablePromise<ExtractResource<K> | undefined>;
|
|
494
480
|
/**
|
|
495
481
|
* Sends a FHIR search request for an array of resources.
|
|
496
482
|
*
|
|
@@ -499,7 +485,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
499
485
|
* Example using a FHIR search string:
|
|
500
486
|
*
|
|
501
487
|
* ```typescript
|
|
502
|
-
* const patients = await client.searchResources('Patient
|
|
488
|
+
* const patients = await client.searchResources('Patient', 'name=Alice');
|
|
503
489
|
* console.log(patients);
|
|
504
490
|
* ```
|
|
505
491
|
*
|
|
@@ -510,7 +496,7 @@ export declare class MedplumClient extends EventTarget {
|
|
|
510
496
|
* @param query The search query as either a string or a structured search object.
|
|
511
497
|
* @returns Promise to the search result bundle.
|
|
512
498
|
*/
|
|
513
|
-
searchResources<K extends ResourceType>(resourceType: K, query
|
|
499
|
+
searchResources<K extends ResourceType>(resourceType: K, query?: URLSearchParams | string, options?: RequestInit): ReadablePromise<ExtractResource<K>[]>;
|
|
514
500
|
/**
|
|
515
501
|
* Searches a ValueSet resource using the "expand" operation.
|
|
516
502
|
* See: https://www.hl7.org/fhir/operation-valueset-expand.html
|
package/dist/types/utils.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Patient, Practitioner, QuestionnaireResponse, QuestionnaireResponseItemAnswer, Reference, RelatedPerson, Resource } from '@medplum/fhirtypes';
|
|
1
|
+
import { CodeableConcept, ObservationDefinition, ObservationDefinitionQualifiedInterval, Patient, Practitioner, QuestionnaireResponse, QuestionnaireResponseItemAnswer, Range, Reference, RelatedPerson, Resource } from '@medplum/fhirtypes';
|
|
2
2
|
export declare type ProfileResource = Patient | Practitioner | RelatedPerson;
|
|
3
3
|
/**
|
|
4
4
|
* Creates a reference resource.
|
|
@@ -141,3 +141,73 @@ export declare function arrayBufferToHex(arrayBuffer: ArrayBuffer): string;
|
|
|
141
141
|
export declare function arrayBufferToBase64(arrayBuffer: ArrayBuffer): string;
|
|
142
142
|
export declare function capitalize(word: string): string;
|
|
143
143
|
export declare function isLowerCase(c: string): boolean;
|
|
144
|
+
/**
|
|
145
|
+
* Tries to find a code string for a given system within a given codeable concept.
|
|
146
|
+
* @param concept The codeable concept.
|
|
147
|
+
* @param system The system string.
|
|
148
|
+
* @returns The code if found; otherwise undefined.
|
|
149
|
+
*/
|
|
150
|
+
export declare function getCodeBySystem(concept: CodeableConcept, system: string): string | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* Sets a code for a given system within a given codeable concept.
|
|
153
|
+
* @param concept The codeable concept.
|
|
154
|
+
* @param system The system string.
|
|
155
|
+
* @param code The code value.
|
|
156
|
+
*/
|
|
157
|
+
export declare function setCodeBySystem(concept: CodeableConcept, system: string, code: string): void;
|
|
158
|
+
/**
|
|
159
|
+
* Tries to find an observation interval for the given patient and value.
|
|
160
|
+
* @param definition The observation definition.
|
|
161
|
+
* @param patient The patient.
|
|
162
|
+
* @param value The observation value.
|
|
163
|
+
* @returns The observation interval if found; otherwise undefined.
|
|
164
|
+
*/
|
|
165
|
+
export declare function findObservationInterval(definition: ObservationDefinition, patient: Patient, value: number, category?: 'reference' | 'critical' | 'absolute'): ObservationDefinitionQualifiedInterval | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* Returns true if the value is in the range accounting for precision.
|
|
168
|
+
* @param value The numeric value.
|
|
169
|
+
* @param range The numeric range.
|
|
170
|
+
* @param precision Optional precision in number of digits.
|
|
171
|
+
* @returns True if the value is within the range.
|
|
172
|
+
*/
|
|
173
|
+
export declare function matchesRange(value: number, range: Range, precision?: number): boolean;
|
|
174
|
+
/**
|
|
175
|
+
* Returns true if the two numbers are equal to the given precision.
|
|
176
|
+
* @param a The first number.
|
|
177
|
+
* @param b The second number.
|
|
178
|
+
* @param precision Optional precision in number of digits.
|
|
179
|
+
* @returns True if the two numbers are equal to the given precision.
|
|
180
|
+
*/
|
|
181
|
+
export declare function preciseEquals(a: number, b: number, precision?: number): boolean;
|
|
182
|
+
/**
|
|
183
|
+
* Returns true if the first number is less than the second number to the given precision.
|
|
184
|
+
* @param a The first number.
|
|
185
|
+
* @param b The second number.
|
|
186
|
+
* @param precision Optional precision in number of digits.
|
|
187
|
+
* @returns True if the first number is less than the second number to the given precision.
|
|
188
|
+
*/
|
|
189
|
+
export declare function preciseLessThan(a: number, b: number, precision?: number): boolean;
|
|
190
|
+
/**
|
|
191
|
+
* Returns true if the first number is greater than the second number to the given precision.
|
|
192
|
+
* @param a The first number.
|
|
193
|
+
* @param b The second number.
|
|
194
|
+
* @param precision Optional precision in number of digits.
|
|
195
|
+
* @returns True if the first number is greater than the second number to the given precision.
|
|
196
|
+
*/
|
|
197
|
+
export declare function preciseGreaterThan(a: number, b: number, precision?: number): boolean;
|
|
198
|
+
/**
|
|
199
|
+
* Returns true if the first number is less than or equal to the second number to the given precision.
|
|
200
|
+
* @param a The first number.
|
|
201
|
+
* @param b The second number.
|
|
202
|
+
* @param precision Optional precision in number of digits.
|
|
203
|
+
* @returns True if the first number is less than or equal to the second number to the given precision.
|
|
204
|
+
*/
|
|
205
|
+
export declare function preciseLessThanOrEquals(a: number, b: number, precision?: number): boolean;
|
|
206
|
+
/**
|
|
207
|
+
* Returns true if the first number is greater than or equal to the second number to the given precision.
|
|
208
|
+
* @param a The first number.
|
|
209
|
+
* @param b The second number.
|
|
210
|
+
* @param precision Optional precision in number of digits.
|
|
211
|
+
* @returns True if the first number is greater than or equal to the second number to the given precision.
|
|
212
|
+
*/
|
|
213
|
+
export declare function preciseGreaterThanOrEquals(a: number, b: number, precision?: number): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medplum/core",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.14",
|
|
4
4
|
"description": "Medplum TS/JS Library",
|
|
5
5
|
"author": "Medplum <hello@medplum.com>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"test": "jest"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@medplum/fhirtypes": "0.9.
|
|
20
|
+
"@medplum/fhirtypes": "0.9.14"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"pdfmake": "0.2.5"
|
package/document.pdf
DELETED
|
Binary file
|
package/test.pdf
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type":"Buffer","data":[37,80,68,70,45,49,46,51,10,37,255,255,255,255,10,56,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,69,120,116,71,83,116,97,116,101,10,47,99,97,32,49,10,47,67,65,32,49,10,62,62,10,101,110,100,111,98,106,10,55,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,10,47,80,97,114,101,110,116,32,49,32,48,32,82,10,47,77,101,100,105,97,66,111,120,32,91,48,32,48,32,54,49,50,32,55,57,50,93,10,47,67,111,110,116,101,110,116,115,32,53,32,48,32,82,10,47,82,101,115,111,117,114,99,101,115,32,54,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,54,32,48,32,111,98,106,10,60,60,10,47,80,114,111,99,83,101,116,32,91,47,80,68,70,32,47,84,101,120,116,32,47,73,109,97,103,101,66,32,47,73,109,97,103,101,67,32,47,73,109,97,103,101,73,93,10,47,69,120,116,71,83,116,97,116,101,32,60,60,10,47,71,115,49,32,56,32,48,32,82,10,62,62,10,47,70,111,110,116,32,60,60,10,47,70,49,32,57,32,48,32,82,10,62,62,10,62,62,10,101,110,100,111,98,106,10,53,32,48,32,111,98,106,10,60,60,10,47,76,101,110,103,116,104,32,49,52,49,10,47,70,105,108,116,101,114,32,47,70,108,97,116,101,68,101,99,111,100,101,10,62,62,10,115,116,114,101,97,109,10,120,156,165,78,65,10,2,49,12,188,231,21,249,128,187,73,109,211,10,75,15,139,186,224,77,233,77,60,133,173,120,80,144,130,239,55,136,23,17,79,50,48,132,97,50,51,140,100,88,176,81,92,57,212,43,244,83,99,60,55,232,215,243,227,162,243,97,26,81,27,208,203,215,244,6,21,238,192,95,95,99,121,139,140,98,162,243,29,147,195,98,113,91,70,102,44,21,142,131,79,18,68,13,213,81,70,58,97,217,193,166,192,254,255,206,148,58,102,249,213,27,98,198,37,225,32,53,186,108,17,193,78,21,255,49,225,9,162,128,58,19,10,101,110,100,115,116,114,101,97,109,10,101,110,100,111,98,106,10,49,49,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,50,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,51,32,48,32,111,98,106,10,40,68,58,50,48,50,50,48,54,48,55,50,49,52,53,48,49,90,41,10,101,110,100,111,98,106,10,49,48,32,48,32,111,98,106,10,60,60,10,47,80,114,111,100,117,99,101,114,32,49,49,32,48,32,82,10,47,67,114,101,97,116,111,114,32,49,50,32,48,32,82,10,47,67,114,101,97,116,105,111,110,68,97,116,101,32,49,51,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,57,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,70,111,110,116,10,47,66,97,115,101,70,111,110,116,32,47,72,101,108,118,101,116,105,99,97,10,47,83,117,98,116,121,112,101,32,47,84,121,112,101,49,10,47,69,110,99,111,100,105,110,103,32,47,87,105,110,65,110,115,105,69,110,99,111,100,105,110,103,10,62,62,10,101,110,100,111,98,106,10,52,32,48,32,111,98,106,10,60,60,10,62,62,10,101,110,100,111,98,106,10,51,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,67,97,116,97,108,111,103,10,47,80,97,103,101,115,32,49,32,48,32,82,10,47,78,97,109,101,115,32,50,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,49,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,115,10,47,67,111,117,110,116,32,49,10,47,75,105,100,115,32,91,55,32,48,32,82,93,10,62,62,10,101,110,100,111,98,106,10,50,32,48,32,111,98,106,10,60,60,10,47,68,101,115,116,115,32,60,60,10,32,32,47,78,97,109,101,115,32,91,10,93,10,62,62,10,62,62,10,101,110,100,111,98,106,10,120,114,101,102,10,48,32,49,52,10,48,48,48,48,48,48,48,48,48,48,32,54,53,53,51,53,32,102,32,10,48,48,48,48,48,48,48,56,52,51,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,57,48,48,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,56,49,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,54,48,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,50,56,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,49,54,57,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,49,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,54,54,51,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,53,56,55,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,52,57,57,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,53,50,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,53,53,49,32,48,48,48,48,48,32,110,32,10,116,114,97,105,108,101,114,10,60,60,10,47,83,105,122,101,32,49,52,10,47,82,111,111,116,32,51,32,48,32,82,10,47,73,110,102,111,32,49,48,32,48,32,82,10,47,73,68,32,91,60,56,54,98,53,49,100,55,49,52,102,55,55,97,48,98,99,48,53,50,51,52,55,50,100,97,57,97,102,56,48,101,55,62,32,60,56,54,98,53,49,100,55,49,52,102,55,55,97,48,98,99,48,53,50,51,52,55,50,100,97,57,97,102,56,48,101,55,62,93,10,62,62,10,115,116,97,114,116,120,114,101,102,10,57,52,55,10,37,37,69,79,70,10]}
|
package/test2.pdf
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type":"Buffer","data":[37,80,68,70,45,49,46,51,10,37,255,255,255,255,10,56,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,69,120,116,71,83,116,97,116,101,10,47,99,97,32,49,10,47,67,65,32,49,10,62,62,10,101,110,100,111,98,106,10,55,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,10,47,80,97,114,101,110,116,32,49,32,48,32,82,10,47,77,101,100,105,97,66,111,120,32,91,48,32,48,32,54,49,50,32,55,57,50,93,10,47,67,111,110,116,101,110,116,115,32,53,32,48,32,82,10,47,82,101,115,111,117,114,99,101,115,32,54,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,54,32,48,32,111,98,106,10,60,60,10,47,80,114,111,99,83,101,116,32,91,47,80,68,70,32,47,84,101,120,116,32,47,73,109,97,103,101,66,32,47,73,109,97,103,101,67,32,47,73,109,97,103,101,73,93,10,47,69,120,116,71,83,116,97,116,101,32,60,60,10,47,71,115,49,32,56,32,48,32,82,10,62,62,10,47,70,111,110,116,32,60,60,10,47,70,49,32,57,32,48,32,82,10,62,62,10,62,62,10,101,110,100,111,98,106,10,53,32,48,32,111,98,106,10,60,60,10,47,76,101,110,103,116,104,32,52,48,54,10,47,70,105,108,116,101,114,32,47,70,108,97,116,101,68,101,99,111,100,101,10,62,62,10,115,116,114,101,97,109,10,120,156,189,150,207,74,4,49,12,198,239,125,138,190,128,217,36,77,147,22,150,61,44,234,130,55,101,110,226,197,113,71,60,40,200,130,207,111,70,87,68,150,46,130,93,25,152,25,58,127,126,253,190,38,105,40,162,31,103,228,39,171,28,199,231,176,216,236,40,62,238,194,226,124,251,246,52,110,111,54,235,56,238,2,126,188,183,27,95,194,20,94,3,29,124,181,30,246,131,20,213,7,89,128,144,227,224,191,187,164,72,20,135,41,220,46,69,181,26,91,50,97,92,69,188,139,195,85,184,24,194,245,223,153,69,64,132,91,92,67,37,227,85,36,140,75,37,181,207,187,239,17,127,94,250,206,103,246,0,19,88,62,244,128,116,171,147,137,22,205,198,189,125,32,36,200,165,197,254,141,15,60,118,159,83,54,200,40,205,73,205,86,84,75,221,177,102,160,214,246,66,180,234,131,230,222,88,158,87,128,114,11,171,212,29,72,8,90,106,19,56,186,185,226,106,199,19,104,77,9,18,182,181,242,140,238,14,21,131,106,199,244,78,158,97,118,138,236,226,66,160,168,71,66,106,234,142,172,9,74,106,70,177,71,48,233,253,202,163,206,243,183,251,250,38,78,144,141,154,122,147,185,201,154,189,124,228,184,236,95,56,82,70,168,100,255,93,56,146,17,96,109,170,158,19,202,3,172,191,217,149,192,205,108,170,53,199,142,218,221,100,193,10,249,136,90,238,175,84,124,151,46,165,141,244,202,108,222,41,248,53,107,247,242,33,202,96,165,25,84,243,218,158,34,143,165,204,169,212,198,82,255,66,41,53,67,193,99,133,50,59,246,4,205,88,102,246,4,106,130,125,55,218,119,30,253,109,246,190,75,221,105,57,236,1,191,210,214,210,15,226,59,215,156,107,120,10,101,110,100,115,116,114,101,97,109,10,101,110,100,111,98,106,10,49,49,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,50,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,51,32,48,32,111,98,106,10,40,68,58,50,48,50,50,48,54,48,55,50,49,53,50,48,51,90,41,10,101,110,100,111,98,106,10,49,48,32,48,32,111,98,106,10,60,60,10,47,80,114,111,100,117,99,101,114,32,49,49,32,48,32,82,10,47,67,114,101,97,116,111,114,32,49,50,32,48,32,82,10,47,67,114,101,97,116,105,111,110,68,97,116,101,32,49,51,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,57,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,70,111,110,116,10,47,66,97,115,101,70,111,110,116,32,47,72,101,108,118,101,116,105,99,97,10,47,83,117,98,116,121,112,101,32,47,84,121,112,101,49,10,47,69,110,99,111,100,105,110,103,32,47,87,105,110,65,110,115,105,69,110,99,111,100,105,110,103,10,62,62,10,101,110,100,111,98,106,10,52,32,48,32,111,98,106,10,60,60,10,62,62,10,101,110,100,111,98,106,10,51,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,67,97,116,97,108,111,103,10,47,80,97,103,101,115,32,49,32,48,32,82,10,47,78,97,109,101,115,32,50,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,49,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,115,10,47,67,111,117,110,116,32,49,10,47,75,105,100,115,32,91,55,32,48,32,82,93,10,62,62,10,101,110,100,111,98,106,10,50,32,48,32,111,98,106,10,60,60,10,47,68,101,115,116,115,32,60,60,10,32,32,47,78,97,109,101,115,32,91,10,93,10,62,62,10,62,62,10,101,110,100,111,98,106,10,120,114,101,102,10,48,32,49,52,10,48,48,48,48,48,48,48,48,48,48,32,54,53,53,51,53,32,102,32,10,48,48,48,48,48,48,49,49,48,56,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,49,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,48,52,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,48,50,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,50,56,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,49,54,57,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,49,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,57,50,56,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,56,53,50,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,54,52,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,57,48,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,56,49,54,32,48,48,48,48,48,32,110,32,10,116,114,97,105,108,101,114,10,60,60,10,47,83,105,122,101,32,49,52,10,47,82,111,111,116,32,51,32,48,32,82,10,47,73,110,102,111,32,49,48,32,48,32,82,10,47,73,68,32,91,60,54,98,49,53,50,51,49,56,56,98,50,54,99,102,100,49,101,97,97,55,51,51,48,56,52,52,51,57,51,53,51,102,62,32,60,54,98,49,53,50,51,49,56,56,98,50,54,99,102,100,49,101,97,97,55,51,51,48,56,52,52,51,57,51,53,51,102,62,93,10,62,62,10,115,116,97,114,116,120,114,101,102,10,49,50,49,50,10,37,37,69,79,70,10]}
|
package/test3.pdf.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type":"Buffer","data":[37,80,68,70,45,49,46,51,10,37,255,255,255,255,10,56,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,69,120,116,71,83,116,97,116,101,10,47,99,97,32,49,10,47,67,65,32,49,10,62,62,10,101,110,100,111,98,106,10,55,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,10,47,80,97,114,101,110,116,32,49,32,48,32,82,10,47,77,101,100,105,97,66,111,120,32,91,48,32,48,32,54,49,50,32,55,57,50,93,10,47,67,111,110,116,101,110,116,115,32,53,32,48,32,82,10,47,82,101,115,111,117,114,99,101,115,32,54,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,54,32,48,32,111,98,106,10,60,60,10,47,80,114,111,99,83,101,116,32,91,47,80,68,70,32,47,84,101,120,116,32,47,73,109,97,103,101,66,32,47,73,109,97,103,101,67,32,47,73,109,97,103,101,73,93,10,47,69,120,116,71,83,116,97,116,101,32,60,60,10,47,71,115,49,32,56,32,48,32,82,10,62,62,10,47,70,111,110,116,32,60,60,10,47,70,49,32,57,32,48,32,82,10,62,62,10,62,62,10,101,110,100,111,98,106,10,53,32,48,32,111,98,106,10,60,60,10,47,76,101,110,103,116,104,32,52,48,54,10,47,70,105,108,116,101,114,32,47,70,108,97,116,101,68,101,99,111,100,101,10,62,62,10,115,116,114,101,97,109,10,120,156,189,150,207,74,4,49,12,198,239,125,138,190,128,217,36,77,147,22,150,61,44,234,130,55,101,110,226,197,113,71,60,40,200,130,207,111,70,87,68,150,46,130,93,25,152,25,58,127,126,253,190,38,105,40,162,31,103,228,39,171,28,199,231,176,216,236,40,62,238,194,226,124,251,246,52,110,111,54,235,56,238,2,126,188,183,27,95,194,20,94,3,29,124,181,30,246,131,20,213,7,89,128,144,227,224,191,187,164,72,20,135,41,220,46,69,181,26,91,50,97,92,69,188,139,195,85,184,24,194,245,223,153,69,64,132,91,92,67,37,227,85,36,140,75,37,181,207,187,239,17,127,94,250,206,103,246,0,19,88,62,244,128,116,171,147,137,22,205,198,189,125,32,36,200,165,197,254,141,15,60,118,159,83,54,200,40,205,73,205,86,84,75,221,177,102,160,214,246,66,180,234,131,230,222,88,158,87,128,114,11,171,212,29,72,8,90,106,19,56,186,185,226,106,199,19,104,77,9,18,182,181,242,140,238,14,21,131,106,199,244,78,158,97,118,138,236,226,66,160,168,71,66,106,234,142,172,9,74,106,70,177,71,48,233,253,202,163,206,243,183,251,250,38,78,144,141,154,122,147,185,201,154,189,124,228,184,236,95,56,82,70,168,100,255,93,56,146,17,96,109,170,158,19,202,3,172,191,217,149,192,205,108,170,53,199,142,218,221,100,193,10,249,136,90,238,175,84,124,151,46,165,141,244,202,108,222,41,248,53,107,247,242,33,202,96,165,25,84,243,218,158,34,143,165,204,169,212,198,82,255,66,41,53,67,193,99,133,50,59,246,4,205,88,102,246,4,106,130,125,55,218,119,30,253,109,246,190,75,221,105,57,236,1,191,210,214,210,15,226,59,215,156,107,120,10,101,110,100,115,116,114,101,97,109,10,101,110,100,111,98,106,10,49,49,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,50,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,51,32,48,32,111,98,106,10,40,68,58,50,48,50,50,48,54,48,55,50,50,48,52,52,56,90,41,10,101,110,100,111,98,106,10,49,48,32,48,32,111,98,106,10,60,60,10,47,80,114,111,100,117,99,101,114,32,49,49,32,48,32,82,10,47,67,114,101,97,116,111,114,32,49,50,32,48,32,82,10,47,67,114,101,97,116,105,111,110,68,97,116,101,32,49,51,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,57,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,70,111,110,116,10,47,66,97,115,101,70,111,110,116,32,47,72,101,108,118,101,116,105,99,97,10,47,83,117,98,116,121,112,101,32,47,84,121,112,101,49,10,47,69,110,99,111,100,105,110,103,32,47,87,105,110,65,110,115,105,69,110,99,111,100,105,110,103,10,62,62,10,101,110,100,111,98,106,10,52,32,48,32,111,98,106,10,60,60,10,62,62,10,101,110,100,111,98,106,10,51,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,67,97,116,97,108,111,103,10,47,80,97,103,101,115,32,49,32,48,32,82,10,47,78,97,109,101,115,32,50,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,49,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,115,10,47,67,111,117,110,116,32,49,10,47,75,105,100,115,32,91,55,32,48,32,82,93,10,62,62,10,101,110,100,111,98,106,10,50,32,48,32,111,98,106,10,60,60,10,47,68,101,115,116,115,32,60,60,10,32,32,47,78,97,109,101,115,32,91,10,93,10,62,62,10,62,62,10,101,110,100,111,98,106,10,120,114,101,102,10,48,32,49,52,10,48,48,48,48,48,48,48,48,48,48,32,54,53,53,51,53,32,102,32,10,48,48,48,48,48,48,49,49,48,56,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,49,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,48,52,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,48,50,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,50,56,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,49,54,57,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,49,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,57,50,56,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,56,53,50,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,54,52,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,57,48,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,56,49,54,32,48,48,48,48,48,32,110,32,10,116,114,97,105,108,101,114,10,60,60,10,47,83,105,122,101,32,49,52,10,47,82,111,111,116,32,51,32,48,32,82,10,47,73,110,102,111,32,49,48,32,48,32,82,10,47,73,68,32,91,60,51,48,51,57,100,51,48,100,51,52,98,54,54,51,48,102,48,57,97,102,51,56,54,56,48,101,101,55,51,54,52,57,62,32,60,51,48,51,57,100,51,48,100,51,52,98,54,54,51,48,102,48,57,97,102,51,56,54,56,48,101,101,55,51,54,52,57,62,93,10,62,62,10,115,116,97,114,116,120,114,101,102,10,49,50,49,50,10,37,37,69,79,70,10]}
|
package/test4.pdf
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"type":"Buffer","data":[37,80,68,70,45,49,46,51,10,37,255,255,255,255,10,56,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,69,120,116,71,83,116,97,116,101,10,47,99,97,32,49,10,47,67,65,32,49,10,62,62,10,101,110,100,111,98,106,10,55,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,10,47,80,97,114,101,110,116,32,49,32,48,32,82,10,47,77,101,100,105,97,66,111,120,32,91,48,32,48,32,54,49,50,32,55,57,50,93,10,47,67,111,110,116,101,110,116,115,32,53,32,48,32,82,10,47,82,101,115,111,117,114,99,101,115,32,54,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,54,32,48,32,111,98,106,10,60,60,10,47,80,114,111,99,83,101,116,32,91,47,80,68,70,32,47,84,101,120,116,32,47,73,109,97,103,101,66,32,47,73,109,97,103,101,67,32,47,73,109,97,103,101,73,93,10,47,69,120,116,71,83,116,97,116,101,32,60,60,10,47,71,115,49,32,56,32,48,32,82,10,62,62,10,47,70,111,110,116,32,60,60,10,47,70,49,32,57,32,48,32,82,10,62,62,10,62,62,10,101,110,100,111,98,106,10,53,32,48,32,111,98,106,10,60,60,10,47,76,101,110,103,116,104,32,52,48,54,10,47,70,105,108,116,101,114,32,47,70,108,97,116,101,68,101,99,111,100,101,10,62,62,10,115,116,114,101,97,109,10,120,156,189,150,207,74,4,49,12,198,239,125,138,190,128,217,36,77,147,22,150,61,44,234,130,55,101,110,226,197,113,71,60,40,200,130,207,111,70,87,68,150,46,130,93,25,152,25,58,127,126,253,190,38,105,40,162,31,103,228,39,171,28,199,231,176,216,236,40,62,238,194,226,124,251,246,52,110,111,54,235,56,238,2,126,188,183,27,95,194,20,94,3,29,124,181,30,246,131,20,213,7,89,128,144,227,224,191,187,164,72,20,135,41,220,46,69,181,26,91,50,97,92,69,188,139,195,85,184,24,194,245,223,153,69,64,132,91,92,67,37,227,85,36,140,75,37,181,207,187,239,17,127,94,250,206,103,246,0,19,88,62,244,128,116,171,147,137,22,205,198,189,125,32,36,200,165,197,254,141,15,60,118,159,83,54,200,40,205,73,205,86,84,75,221,177,102,160,214,246,66,180,234,131,230,222,88,158,87,128,114,11,171,212,29,72,8,90,106,19,56,186,185,226,106,199,19,104,77,9,18,182,181,242,140,238,14,21,131,106,199,244,78,158,97,118,138,236,226,66,160,168,71,66,106,234,142,172,9,74,106,70,177,71,48,233,253,202,163,206,243,183,251,250,38,78,144,141,154,122,147,185,201,154,189,124,228,184,236,95,56,82,70,168,100,255,93,56,146,17,96,109,170,158,19,202,3,172,191,217,149,192,205,108,170,53,199,142,218,221,100,193,10,249,136,90,238,175,84,124,151,46,165,141,244,202,108,222,41,248,53,107,247,242,33,202,96,165,25,84,243,218,158,34,143,165,204,169,212,198,82,255,66,41,53,67,193,99,133,50,59,246,4,205,88,102,246,4,106,130,125,55,218,119,30,253,109,246,190,75,221,105,57,236,1,191,210,214,210,15,226,59,215,156,107,120,10,101,110,100,115,116,114,101,97,109,10,101,110,100,111,98,106,10,49,49,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,50,32,48,32,111,98,106,10,40,112,100,102,109,97,107,101,41,10,101,110,100,111,98,106,10,49,51,32,48,32,111,98,106,10,40,68,58,50,48,50,50,48,54,48,55,50,50,48,52,52,56,90,41,10,101,110,100,111,98,106,10,49,48,32,48,32,111,98,106,10,60,60,10,47,80,114,111,100,117,99,101,114,32,49,49,32,48,32,82,10,47,67,114,101,97,116,111,114,32,49,50,32,48,32,82,10,47,67,114,101,97,116,105,111,110,68,97,116,101,32,49,51,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,57,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,70,111,110,116,10,47,66,97,115,101,70,111,110,116,32,47,72,101,108,118,101,116,105,99,97,10,47,83,117,98,116,121,112,101,32,47,84,121,112,101,49,10,47,69,110,99,111,100,105,110,103,32,47,87,105,110,65,110,115,105,69,110,99,111,100,105,110,103,10,62,62,10,101,110,100,111,98,106,10,52,32,48,32,111,98,106,10,60,60,10,62,62,10,101,110,100,111,98,106,10,51,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,67,97,116,97,108,111,103,10,47,80,97,103,101,115,32,49,32,48,32,82,10,47,78,97,109,101,115,32,50,32,48,32,82,10,62,62,10,101,110,100,111,98,106,10,49,32,48,32,111,98,106,10,60,60,10,47,84,121,112,101,32,47,80,97,103,101,115,10,47,67,111,117,110,116,32,49,10,47,75,105,100,115,32,91,55,32,48,32,82,93,10,62,62,10,101,110,100,111,98,106,10,50,32,48,32,111,98,106,10,60,60,10,47,68,101,115,116,115,32,60,60,10,32,32,47,78,97,109,101,115,32,91,10,93,10,62,62,10,62,62,10,101,110,100,111,98,106,10,120,114,101,102,10,48,32,49,52,10,48,48,48,48,48,48,48,48,48,48,32,54,53,53,51,53,32,102,32,10,48,48,48,48,48,48,49,49,48,56,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,49,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,48,52,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,49,48,50,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,50,56,54,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,49,54,57,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,54,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,48,49,53,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,57,50,56,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,56,53,50,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,54,52,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,55,57,48,32,48,48,48,48,48,32,110,32,10,48,48,48,48,48,48,48,56,49,54,32,48,48,48,48,48,32,110,32,10,116,114,97,105,108,101,114,10,60,60,10,47,83,105,122,101,32,49,52,10,47,82,111,111,116,32,51,32,48,32,82,10,47,73,110,102,111,32,49,48,32,48,32,82,10,47,73,68,32,91,60,51,48,51,57,100,51,48,100,51,52,98,54,54,51,48,102,48,57,97,102,51,56,54,56,48,101,101,55,51,54,52,57,62,32,60,51,48,51,57,100,51,48,100,51,52,98,54,54,51,48,102,48,57,97,102,51,56,54,56,48,101,101,55,51,54,52,57,62,93,10,62,62,10,115,116,97,114,116,120,114,101,102,10,49,50,49,50,10,37,37,69,79,70,10]}
|
package/test5.pdf
DELETED
|
Binary file
|
package/test7-2.pdf
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
package/test7.pdf
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{}
|
package/test8-2.pdf
DELETED
|
Binary file
|
package/test8.pdf
DELETED
|
File without changes
|
package/test9-2.pdf
DELETED
|
File without changes
|
package/test9-3.pdf
DELETED
|
File without changes
|
package/test9-4.pdf
DELETED
|
Binary file
|
package/test9.pdf
DELETED
|
File without changes
|