@onereach/types-contacts-api 5.37.2 → 5.38.1-beta.3708.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/dist/cjs/index.d.ts +9 -0
- package/dist/cjs/index.js +7 -1
- package/dist/esm/index.d.ts +9 -0
- package/dist/esm/index.js +6 -0
- package/package.json +2 -3
package/dist/cjs/index.d.ts
CHANGED
|
@@ -220,6 +220,15 @@ export declare enum MigrationState {
|
|
|
220
220
|
ToDo = "ToDo",
|
|
221
221
|
Done = "Done"
|
|
222
222
|
}
|
|
223
|
+
export interface MigrationListResponseDto {
|
|
224
|
+
status: MigrationStatus;
|
|
225
|
+
name: string;
|
|
226
|
+
}
|
|
227
|
+
export declare enum MigrationStatus {
|
|
228
|
+
Executed = "executed",
|
|
229
|
+
Pending = "pending",
|
|
230
|
+
Unknown = "unknown"
|
|
231
|
+
}
|
|
223
232
|
export interface FieldSchemaListParamsDto extends ReturnType<typeof IntersectionType<OrderParams, ListApiParams>> {
|
|
224
233
|
q?: string;
|
|
225
234
|
schemaPreset?: string[];
|
package/dist/cjs/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SharedBookStatus = exports.MigrationState = exports.ColumnTypes = exports.BatchProcessStatus = void 0;
|
|
3
|
+
exports.SharedBookStatus = exports.MigrationStatus = exports.MigrationState = exports.ColumnTypes = exports.BatchProcessStatus = void 0;
|
|
4
4
|
var BatchProcessStatus;
|
|
5
5
|
(function (BatchProcessStatus) {
|
|
6
6
|
BatchProcessStatus["pending"] = "pending";
|
|
@@ -25,6 +25,12 @@ var MigrationState;
|
|
|
25
25
|
MigrationState["ToDo"] = "ToDo";
|
|
26
26
|
MigrationState["Done"] = "Done";
|
|
27
27
|
})(MigrationState || (exports.MigrationState = MigrationState = {}));
|
|
28
|
+
var MigrationStatus;
|
|
29
|
+
(function (MigrationStatus) {
|
|
30
|
+
MigrationStatus["Executed"] = "executed";
|
|
31
|
+
MigrationStatus["Pending"] = "pending";
|
|
32
|
+
MigrationStatus["Unknown"] = "unknown";
|
|
33
|
+
})(MigrationStatus || (exports.MigrationStatus = MigrationStatus = {}));
|
|
28
34
|
var SharedBookStatus;
|
|
29
35
|
(function (SharedBookStatus) {
|
|
30
36
|
SharedBookStatus["pending"] = "pending";
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -220,6 +220,15 @@ export declare enum MigrationState {
|
|
|
220
220
|
ToDo = "ToDo",
|
|
221
221
|
Done = "Done"
|
|
222
222
|
}
|
|
223
|
+
export interface MigrationListResponseDto {
|
|
224
|
+
status: MigrationStatus;
|
|
225
|
+
name: string;
|
|
226
|
+
}
|
|
227
|
+
export declare enum MigrationStatus {
|
|
228
|
+
Executed = "executed",
|
|
229
|
+
Pending = "pending",
|
|
230
|
+
Unknown = "unknown"
|
|
231
|
+
}
|
|
223
232
|
export interface FieldSchemaListParamsDto extends ReturnType<typeof IntersectionType<OrderParams, ListApiParams>> {
|
|
224
233
|
q?: string;
|
|
225
234
|
schemaPreset?: string[];
|
package/dist/esm/index.js
CHANGED
|
@@ -22,6 +22,12 @@ export var MigrationState;
|
|
|
22
22
|
MigrationState["ToDo"] = "ToDo";
|
|
23
23
|
MigrationState["Done"] = "Done";
|
|
24
24
|
})(MigrationState || (MigrationState = {}));
|
|
25
|
+
export var MigrationStatus;
|
|
26
|
+
(function (MigrationStatus) {
|
|
27
|
+
MigrationStatus["Executed"] = "executed";
|
|
28
|
+
MigrationStatus["Pending"] = "pending";
|
|
29
|
+
MigrationStatus["Unknown"] = "unknown";
|
|
30
|
+
})(MigrationStatus || (MigrationStatus = {}));
|
|
25
31
|
export var SharedBookStatus;
|
|
26
32
|
(function (SharedBookStatus) {
|
|
27
33
|
SharedBookStatus["pending"] = "pending";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onereach/types-contacts-api",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.38.1-beta.3708.0",
|
|
4
4
|
"description": "Generated types for Contacts Api",
|
|
5
5
|
"author": "OneReach.ai",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -24,6 +24,5 @@
|
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|
|
27
|
-
}
|
|
28
|
-
"gitHead": "97a19106184d327faa1d0678f2b12037a078d13e"
|
|
27
|
+
}
|
|
29
28
|
}
|