@onereach/types-contacts-api 2.2.7-beta.1628.0 → 2.2.7

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 (2) hide show
  1. package/dist/index.ts +3 -4
  2. package/package.json +3 -2
package/dist/index.ts CHANGED
@@ -43,12 +43,12 @@ export interface ListApiParams {
43
43
  }
44
44
 
45
45
  export interface CreateContactDto {
46
- contact_book?: string;
46
+ contact_book: string;
47
47
  data: FieldValueRequestDto[];
48
48
  }
49
49
 
50
50
  export interface CreateMultipleContactsDto {
51
- contact_book?: string;
51
+ contact_book: string;
52
52
  contacts: ContactRequestDto[];
53
53
  }
54
54
 
@@ -192,8 +192,7 @@ export interface UpsertFieldValueByMachineNameDto {
192
192
 
193
193
  export interface FieldValueRequestDto {
194
194
  value: any;
195
- schemaId?: string;
196
- machine_name?: string;
195
+ schemaId: string;
197
196
  id?: string;
198
197
  }
199
198
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@onereach/types-contacts-api",
3
3
  "description": "Generated types for Contacts Api",
4
- "version": "2.2.7-beta.1628.0",
4
+ "version": "2.2.7",
5
5
  "author": "OneReach.ai",
6
6
  "types": "./dist/index.ts",
7
7
  "publishConfig": {
@@ -17,5 +17,6 @@
17
17
  "@types/node": "^18.11.10",
18
18
  "ts-morph": "^17.0.1",
19
19
  "ts-node": "^10.9.1"
20
- }
20
+ },
21
+ "gitHead": "b7addf8bc79d9cba6be65d92809fc233e589b630"
21
22
  }