@oystehr/sdk 4.2.0 → 4.2.1
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/resources/types/M2mListV2Item.d.ts +11 -0
- package/dist/cjs/resources/types/M2mListV2Response.d.ts +2 -2
- package/dist/cjs/resources/types/index.d.ts +1 -0
- package/dist/esm/resources/types/M2mListV2Item.d.ts +11 -0
- package/dist/esm/resources/types/M2mListV2Response.d.ts +2 -2
- package/dist/esm/resources/types/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/resources/types/M2mListV2Item.ts +13 -0
- package/src/resources/types/M2mListV2Response.ts +2 -2
- package/src/resources/types/index.ts +1 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface M2mListV2Item {
|
|
2
|
+
id: string;
|
|
3
|
+
/**
|
|
4
|
+
* A name for the M2M Client to help you differentiate it from other M2M Clients in the project.
|
|
5
|
+
*/
|
|
6
|
+
name: string;
|
|
7
|
+
/**
|
|
8
|
+
* A description of the M2M Client to help you differentiate it from other M2M Clients in the project.
|
|
9
|
+
*/
|
|
10
|
+
description?: string;
|
|
11
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { M2mListV2Item } from './M2mListV2Item';
|
|
2
2
|
/**
|
|
3
3
|
* List of all M2M clients with pagination details.
|
|
4
4
|
*/
|
|
@@ -6,7 +6,7 @@ export interface M2mListV2Response {
|
|
|
6
6
|
/**
|
|
7
7
|
* An array of M2M Client objects. This array is empty if no M2M Clients match the query criteria.
|
|
8
8
|
*/
|
|
9
|
-
data:
|
|
9
|
+
data: M2mListV2Item[];
|
|
10
10
|
metadata: {
|
|
11
11
|
/**
|
|
12
12
|
* Cursor to fetch the next page of results. Null if there are no further pages.
|
|
@@ -24,6 +24,7 @@ export * from './ClaimDateWithQualifier';
|
|
|
24
24
|
export * from './ClaimAddress';
|
|
25
25
|
export * from './ClaimId';
|
|
26
26
|
export * from './ClaimCMS1500';
|
|
27
|
+
export * from './M2mListV2Item';
|
|
27
28
|
export * from './M2mListItem';
|
|
28
29
|
export * from './M2m';
|
|
29
30
|
export * from './AccessPolicy';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface M2mListV2Item {
|
|
2
|
+
id: string;
|
|
3
|
+
/**
|
|
4
|
+
* A name for the M2M Client to help you differentiate it from other M2M Clients in the project.
|
|
5
|
+
*/
|
|
6
|
+
name: string;
|
|
7
|
+
/**
|
|
8
|
+
* A description of the M2M Client to help you differentiate it from other M2M Clients in the project.
|
|
9
|
+
*/
|
|
10
|
+
description?: string;
|
|
11
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { M2mListV2Item } from './M2mListV2Item';
|
|
2
2
|
/**
|
|
3
3
|
* List of all M2M clients with pagination details.
|
|
4
4
|
*/
|
|
@@ -6,7 +6,7 @@ export interface M2mListV2Response {
|
|
|
6
6
|
/**
|
|
7
7
|
* An array of M2M Client objects. This array is empty if no M2M Clients match the query criteria.
|
|
8
8
|
*/
|
|
9
|
-
data:
|
|
9
|
+
data: M2mListV2Item[];
|
|
10
10
|
metadata: {
|
|
11
11
|
/**
|
|
12
12
|
* Cursor to fetch the next page of results. Null if there are no further pages.
|
|
@@ -24,6 +24,7 @@ export * from './ClaimDateWithQualifier';
|
|
|
24
24
|
export * from './ClaimAddress';
|
|
25
25
|
export * from './ClaimId';
|
|
26
26
|
export * from './ClaimCMS1500';
|
|
27
|
+
export * from './M2mListV2Item';
|
|
27
28
|
export * from './M2mListItem';
|
|
28
29
|
export * from './M2m';
|
|
29
30
|
export * from './AccessPolicy';
|
package/package.json
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// AUTOGENERATED -- DO NOT EDIT
|
|
2
|
+
|
|
3
|
+
export interface M2mListV2Item {
|
|
4
|
+
id: string;
|
|
5
|
+
/**
|
|
6
|
+
* A name for the M2M Client to help you differentiate it from other M2M Clients in the project.
|
|
7
|
+
*/
|
|
8
|
+
name: string;
|
|
9
|
+
/**
|
|
10
|
+
* A description of the M2M Client to help you differentiate it from other M2M Clients in the project.
|
|
11
|
+
*/
|
|
12
|
+
description?: string;
|
|
13
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// AUTOGENERATED -- DO NOT EDIT
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import { M2mListV2Item } from './M2mListV2Item';
|
|
4
4
|
/**
|
|
5
5
|
* List of all M2M clients with pagination details.
|
|
6
6
|
*/
|
|
@@ -8,7 +8,7 @@ export interface M2mListV2Response {
|
|
|
8
8
|
/**
|
|
9
9
|
* An array of M2M Client objects. This array is empty if no M2M Clients match the query criteria.
|
|
10
10
|
*/
|
|
11
|
-
data:
|
|
11
|
+
data: M2mListV2Item[];
|
|
12
12
|
metadata: {
|
|
13
13
|
/**
|
|
14
14
|
* Cursor to fetch the next page of results. Null if there are no further pages.
|
|
@@ -26,6 +26,7 @@ export * from './ClaimDateWithQualifier';
|
|
|
26
26
|
export * from './ClaimAddress';
|
|
27
27
|
export * from './ClaimId';
|
|
28
28
|
export * from './ClaimCMS1500';
|
|
29
|
+
export * from './M2mListV2Item';
|
|
29
30
|
export * from './M2mListItem';
|
|
30
31
|
export * from './M2m';
|
|
31
32
|
export * from './AccessPolicy';
|