gdc-common-utils-ts 2.7.5 → 2.7.6

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 (34) hide show
  1. package/dist/constants/Schemas.d.ts +2 -0
  2. package/dist/constants/Schemas.js +2 -0
  3. package/dist/constants/composition.d.ts +13 -0
  4. package/dist/constants/composition.js +15 -0
  5. package/dist/constants/data-capabilities.d.ts +7 -7
  6. package/dist/constants/didcomm.d.ts +4 -0
  7. package/dist/constants/didcomm.js +4 -0
  8. package/dist/constants/fhir-resource-types.d.ts +55 -0
  9. package/dist/constants/fhir-resource-types.js +14 -0
  10. package/dist/constants/gateway-response.d.ts +100 -0
  11. package/dist/constants/gateway-response.js +104 -0
  12. package/dist/constants/http.d.ts +14 -0
  13. package/dist/constants/http.js +14 -0
  14. package/dist/constants/index.d.ts +3 -0
  15. package/dist/constants/index.js +3 -0
  16. package/dist/constants/jsonld.d.ts +5 -0
  17. package/dist/constants/jsonld.js +5 -0
  18. package/dist/constants/schemaorg.d.ts +5 -0
  19. package/dist/constants/schemaorg.js +5 -0
  20. package/dist/constants/urn.d.ts +2 -0
  21. package/dist/constants/urn.js +2 -0
  22. package/dist/examples/index.d.ts +1 -0
  23. package/dist/examples/index.js +1 -0
  24. package/dist/examples/researcher-working-selection.d.ts +68 -0
  25. package/dist/examples/researcher-working-selection.js +59 -0
  26. package/dist/examples/shared.d.ts +1 -0
  27. package/dist/examples/shared.js +1 -0
  28. package/dist/models/bundle-editor-types.d.ts +3 -0
  29. package/dist/models/bundle-editor-types.js +3 -0
  30. package/dist/models/interoperable-claims/index.d.ts +1 -0
  31. package/dist/models/interoperable-claims/index.js +1 -0
  32. package/dist/models/interoperable-claims/research-subject-claims.d.ts +4 -0
  33. package/dist/models/interoperable-claims/research-subject-claims.js +4 -0
  34. package/package.json +1 -1
@@ -37,9 +37,12 @@ export const BundleEditableResourceTypes = Object.freeze({
37
37
  });
38
38
  export const BundleTypes = Object.freeze({
39
39
  batch: 'batch',
40
+ batchResponse: 'batch-response',
40
41
  document: 'document',
41
42
  collection: 'collection',
43
+ searchset: 'searchset',
42
44
  transaction: 'transaction',
45
+ transactionResponse: 'transaction-response',
43
46
  });
44
47
  /** Canonical validation issues returned by `BundleEditor.validateDocumentAuthoring()`. */
45
48
  export const BundleEditorValidationIssues = Object.freeze({
@@ -20,6 +20,7 @@ export * from './appointment-claims';
20
20
  export * from './appointment-response-claims';
21
21
  export * from './encounter-claims';
22
22
  export * from './related-person-claims';
23
+ export * from './research-subject-claims';
23
24
  export * from './coverage-claims';
24
25
  export * from './clinical-impression-claims';
25
26
  export * from './task-claims';
@@ -22,6 +22,7 @@ export * from './appointment-claims.js';
22
22
  export * from './appointment-response-claims.js';
23
23
  export * from './encounter-claims.js';
24
24
  export * from './related-person-claims.js';
25
+ export * from './research-subject-claims.js';
25
26
  export * from './coverage-claims.js';
26
27
  export * from './clinical-impression-claims.js';
27
28
  export * from './task-claims.js';
@@ -0,0 +1,4 @@
1
+ /** Claims projected by GW for a FHIR ResearchSubject search result. */
2
+ export declare const ResearchSubjectClaim: Readonly<{
3
+ readonly Identifier: "ResearchSubject.identifier";
4
+ }>;
@@ -0,0 +1,4 @@
1
+ /** Claims projected by GW for a FHIR ResearchSubject search result. */
2
+ export const ResearchSubjectClaim = Object.freeze({
3
+ Identifier: 'ResearchSubject.identifier',
4
+ });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gdc-common-utils-ts",
3
- "version": "2.7.5",
3
+ "version": "2.7.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },