featurebase-node 0.9.0 → 0.11.0
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/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/resources/support/conversations/conversations.d.mts +106 -95
- package/resources/support/conversations/conversations.d.mts.map +1 -1
- package/resources/support/conversations/conversations.d.ts +106 -95
- package/resources/support/conversations/conversations.d.ts.map +1 -1
- package/resources/support/conversations/conversations.js +21 -15
- package/resources/support/conversations/conversations.js.map +1 -1
- package/resources/support/conversations/conversations.mjs +21 -15
- package/resources/support/conversations/conversations.mjs.map +1 -1
- package/resources/users/companies/companies.d.mts +237 -1
- package/resources/users/companies/companies.d.mts.map +1 -1
- package/resources/users/companies/companies.d.ts +237 -1
- package/resources/users/companies/companies.d.ts.map +1 -1
- package/resources/users/companies/companies.js +94 -0
- package/resources/users/companies/companies.js.map +1 -1
- package/resources/users/companies/companies.mjs +94 -0
- package/resources/users/companies/companies.mjs.map +1 -1
- package/resources/users/companies/index.d.mts +1 -1
- package/resources/users/companies/index.d.mts.map +1 -1
- package/resources/users/companies/index.d.ts +1 -1
- package/resources/users/companies/index.d.ts.map +1 -1
- package/resources/users/companies/index.js.map +1 -1
- package/resources/users/companies/index.mjs.map +1 -1
- package/resources/users/contacts/contacts.d.mts +261 -1
- package/resources/users/contacts/contacts.d.mts.map +1 -1
- package/resources/users/contacts/contacts.d.ts +261 -1
- package/resources/users/contacts/contacts.d.ts.map +1 -1
- package/resources/users/contacts/contacts.js +99 -0
- package/resources/users/contacts/contacts.js.map +1 -1
- package/resources/users/contacts/contacts.mjs +99 -0
- package/resources/users/contacts/contacts.mjs.map +1 -1
- package/resources/users/contacts/index.d.mts +1 -1
- package/resources/users/contacts/index.d.mts.map +1 -1
- package/resources/users/contacts/index.d.ts +1 -1
- package/resources/users/contacts/index.d.ts.map +1 -1
- package/resources/users/contacts/index.js.map +1 -1
- package/resources/users/contacts/index.mjs.map +1 -1
- package/resources/users/index.d.mts +2 -2
- package/resources/users/index.d.mts.map +1 -1
- package/resources/users/index.d.ts +2 -2
- package/resources/users/index.d.ts.map +1 -1
- package/resources/users/index.js.map +1 -1
- package/resources/users/index.mjs.map +1 -1
- package/resources/users/users.d.mts +4 -4
- package/resources/users/users.d.mts.map +1 -1
- package/resources/users/users.d.ts +4 -4
- package/resources/users/users.d.ts.map +1 -1
- package/resources/users/users.js.map +1 -1
- package/resources/users/users.mjs.map +1 -1
- package/src/resources/support/conversations/conversations.ts +121 -112
- package/src/resources/users/companies/companies.ts +289 -0
- package/src/resources/users/companies/index.ts +2 -0
- package/src/resources/users/contacts/contacts.ts +320 -0
- package/src/resources/users/contacts/index.ts +2 -0
- package/src/resources/users/index.ts +4 -0
- package/src/resources/users/users.ts +8 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.mts.map +1 -1
- package/version.d.ts +1 -1
- package/version.d.ts.map +1 -1
- package/version.js +1 -1
- package/version.js.map +1 -1
- package/version.mjs +1 -1
- package/version.mjs.map +1 -1
|
@@ -4,11 +4,13 @@ export {
|
|
|
4
4
|
Companies,
|
|
5
5
|
type Company,
|
|
6
6
|
type DeletedCompany,
|
|
7
|
+
type CompanySearchResponse,
|
|
7
8
|
type CompanyRetrieveParams,
|
|
8
9
|
type CompanyListParams,
|
|
9
10
|
type CompanyDeleteParams,
|
|
10
11
|
type CompanyCreateOrUpdateParams,
|
|
11
12
|
type CompanyDeleteByCompanyIDParams,
|
|
13
|
+
type CompanySearchParams,
|
|
12
14
|
type CompaniesCursorPage,
|
|
13
15
|
} from './companies/index';
|
|
14
16
|
export {
|
|
@@ -19,12 +21,14 @@ export {
|
|
|
19
21
|
type ContactRetrieveResponse,
|
|
20
22
|
type ContactBlockResponse,
|
|
21
23
|
type ContactCreateOrUpdateResponse,
|
|
24
|
+
type ContactSearchResponse,
|
|
22
25
|
type ContactUnblockResponse,
|
|
23
26
|
type ContactRetrieveParams,
|
|
24
27
|
type ContactListParams,
|
|
25
28
|
type ContactDeleteParams,
|
|
26
29
|
type ContactBlockParams,
|
|
27
30
|
type ContactCreateOrUpdateParams,
|
|
31
|
+
type ContactSearchParams,
|
|
28
32
|
type ContactUnblockParams,
|
|
29
33
|
type ContactListDataCursorPage,
|
|
30
34
|
} from './contacts/index';
|
|
@@ -11,6 +11,8 @@ import {
|
|
|
11
11
|
CompanyDeleteParams,
|
|
12
12
|
CompanyListParams,
|
|
13
13
|
CompanyRetrieveParams,
|
|
14
|
+
CompanySearchParams,
|
|
15
|
+
CompanySearchResponse,
|
|
14
16
|
DeletedCompany,
|
|
15
17
|
} from './companies/companies';
|
|
16
18
|
import * as ContactsAPI from './contacts/contacts';
|
|
@@ -26,6 +28,8 @@ import {
|
|
|
26
28
|
ContactListParams,
|
|
27
29
|
ContactRetrieveParams,
|
|
28
30
|
ContactRetrieveResponse,
|
|
31
|
+
ContactSearchParams,
|
|
32
|
+
ContactSearchResponse,
|
|
29
33
|
ContactUnblockParams,
|
|
30
34
|
ContactUnblockResponse,
|
|
31
35
|
Contacts,
|
|
@@ -49,6 +53,7 @@ export declare namespace Users {
|
|
|
49
53
|
type ContactRetrieveResponse as ContactRetrieveResponse,
|
|
50
54
|
type ContactBlockResponse as ContactBlockResponse,
|
|
51
55
|
type ContactCreateOrUpdateResponse as ContactCreateOrUpdateResponse,
|
|
56
|
+
type ContactSearchResponse as ContactSearchResponse,
|
|
52
57
|
type ContactUnblockResponse as ContactUnblockResponse,
|
|
53
58
|
type ContactListDataCursorPage as ContactListDataCursorPage,
|
|
54
59
|
type ContactRetrieveParams as ContactRetrieveParams,
|
|
@@ -56,6 +61,7 @@ export declare namespace Users {
|
|
|
56
61
|
type ContactDeleteParams as ContactDeleteParams,
|
|
57
62
|
type ContactBlockParams as ContactBlockParams,
|
|
58
63
|
type ContactCreateOrUpdateParams as ContactCreateOrUpdateParams,
|
|
64
|
+
type ContactSearchParams as ContactSearchParams,
|
|
59
65
|
type ContactUnblockParams as ContactUnblockParams,
|
|
60
66
|
};
|
|
61
67
|
|
|
@@ -63,11 +69,13 @@ export declare namespace Users {
|
|
|
63
69
|
Companies as Companies,
|
|
64
70
|
type Company as Company,
|
|
65
71
|
type DeletedCompany as DeletedCompany,
|
|
72
|
+
type CompanySearchResponse as CompanySearchResponse,
|
|
66
73
|
type CompaniesCursorPage as CompaniesCursorPage,
|
|
67
74
|
type CompanyRetrieveParams as CompanyRetrieveParams,
|
|
68
75
|
type CompanyListParams as CompanyListParams,
|
|
69
76
|
type CompanyDeleteParams as CompanyDeleteParams,
|
|
70
77
|
type CompanyCreateOrUpdateParams as CompanyCreateOrUpdateParams,
|
|
71
78
|
type CompanyDeleteByCompanyIDParams as CompanyDeleteByCompanyIDParams,
|
|
79
|
+
type CompanySearchParams as CompanySearchParams,
|
|
72
80
|
};
|
|
73
81
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.11.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.11.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.d.mts","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,
|
|
1
|
+
{"version":3,"file":"version.d.mts","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,WAAW,CAAC"}
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.11.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,
|
|
1
|
+
{"version":3,"file":"version.d.ts","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,WAAW,CAAC"}
|
package/version.js
CHANGED
package/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,QAAQ,CAAC,CAAC,2BAA2B"}
|
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.11.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|
package/version.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.mjs","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,
|
|
1
|
+
{"version":3,"file":"version.mjs","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,2BAA2B"}
|