repzo 1.0.49 → 1.0.50
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/lib/index.js +2 -1
- package/lib/types/index.d.ts +3 -0
- package/package.json +1 -1
- package/src/types/index.ts +3 -0
package/lib/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import axios from "axios";
|
|
2
2
|
import { v4 as uuid } from "uuid";
|
|
3
|
-
|
|
3
|
+
class Repzo {
|
|
4
4
|
constructor(apiKey, options) {
|
|
5
5
|
this.client = {
|
|
6
6
|
_path: "/client",
|
|
@@ -1101,3 +1101,4 @@ Repzo.CommandLog = class {
|
|
|
1101
1101
|
return this;
|
|
1102
1102
|
}
|
|
1103
1103
|
};
|
|
1104
|
+
export default Repzo;
|
package/lib/types/index.d.ts
CHANGED
|
@@ -2082,6 +2082,7 @@ export declare namespace Service {
|
|
|
2082
2082
|
[key: string]: any;
|
|
2083
2083
|
};
|
|
2084
2084
|
company_namespace: string[];
|
|
2085
|
+
teams?: string[];
|
|
2085
2086
|
createdAt: string;
|
|
2086
2087
|
updatedAt: string;
|
|
2087
2088
|
__v: number;
|
|
@@ -2091,6 +2092,7 @@ export declare namespace Service {
|
|
|
2091
2092
|
type?: "van" | "main";
|
|
2092
2093
|
code?: string;
|
|
2093
2094
|
disabled?: boolean;
|
|
2095
|
+
teams?: string[];
|
|
2094
2096
|
integration_meta?: {
|
|
2095
2097
|
[key: string]: any;
|
|
2096
2098
|
};
|
|
@@ -2610,6 +2612,7 @@ export declare namespace Service {
|
|
|
2610
2612
|
is_default?: boolean;
|
|
2611
2613
|
color?: string[] | string;
|
|
2612
2614
|
disabled?: boolean;
|
|
2615
|
+
from_updatedAt?: number;
|
|
2613
2616
|
[key: string]: any;
|
|
2614
2617
|
};
|
|
2615
2618
|
interface Result extends DefaultPaginationResult {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -2307,6 +2307,7 @@ export namespace Service {
|
|
|
2307
2307
|
disabled?: boolean;
|
|
2308
2308
|
integration_meta?: { [key: string]: any };
|
|
2309
2309
|
company_namespace: string[];
|
|
2310
|
+
teams?: string[];
|
|
2310
2311
|
createdAt: string;
|
|
2311
2312
|
updatedAt: string;
|
|
2312
2313
|
__v: number;
|
|
@@ -2316,6 +2317,7 @@ export namespace Service {
|
|
|
2316
2317
|
type?: "van" | "main";
|
|
2317
2318
|
code?: string;
|
|
2318
2319
|
disabled?: boolean;
|
|
2320
|
+
teams?: string[];
|
|
2319
2321
|
integration_meta?: { [key: string]: any };
|
|
2320
2322
|
company_namespace?: string[];
|
|
2321
2323
|
}
|
|
@@ -2850,6 +2852,7 @@ export namespace Service {
|
|
|
2850
2852
|
is_default?: boolean;
|
|
2851
2853
|
color?: string[] | string;
|
|
2852
2854
|
disabled?: boolean;
|
|
2855
|
+
from_updatedAt?: number;
|
|
2853
2856
|
[key: string]: any; // integration_meta.
|
|
2854
2857
|
};
|
|
2855
2858
|
export interface Result extends DefaultPaginationResult {
|