@kl1/contracts 1.0.60 → 1.0.61
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/index.js +15 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -0
- package/dist/index.mjs.map +1 -1
- package/dist/src/contact/index.d.ts +113 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contract.d.ts +113 -0
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/index.d.ts +1 -0
- package/dist/src/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/src/app/index.d.ts +0 -17
- package/dist/src/app/index.d.ts.map +0 -1
- package/dist/src/mail/mail-server.d.ts +0 -216
- package/dist/src/mail/mail-server.d.ts.map +0 -1
- package/dist/src/platform-contact/schema.d.ts +0 -30
- package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -8273,5 +8273,118 @@ export declare const contactContract: {
|
|
8273
8273
|
'x-client-timezone'?: string | undefined;
|
8274
8274
|
}>>>;
|
8275
8275
|
};
|
8276
|
+
getExportContacts: {
|
8277
|
+
method: "GET";
|
8278
|
+
query: z.ZodObject<{
|
8279
|
+
page: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
8280
|
+
pageSize: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
8281
|
+
keyword: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
8282
|
+
company: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
8283
|
+
name: z.ZodOptional<z.ZodString>;
|
8284
|
+
address: z.ZodOptional<z.ZodString>;
|
8285
|
+
channel: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
8286
|
+
selectedDate: z.ZodOptional<z.ZodString>;
|
8287
|
+
customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
8288
|
+
attributeId: z.ZodString;
|
8289
|
+
type: z.ZodString;
|
8290
|
+
value: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
8291
|
+
}, "strip", z.ZodTypeAny, {
|
8292
|
+
type: string;
|
8293
|
+
value: (string | string[]) & (string | string[] | undefined);
|
8294
|
+
attributeId: string;
|
8295
|
+
}, {
|
8296
|
+
type: string;
|
8297
|
+
value: (string | string[]) & (string | string[] | undefined);
|
8298
|
+
attributeId: string;
|
8299
|
+
}>, "many">>;
|
8300
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
8301
|
+
phone: z.ZodOptional<z.ZodString>;
|
8302
|
+
email: z.ZodOptional<z.ZodString>;
|
8303
|
+
notes: z.ZodOptional<z.ZodString>;
|
8304
|
+
}, "strip", z.ZodTypeAny, {
|
8305
|
+
page?: number | undefined;
|
8306
|
+
pageSize?: number | undefined;
|
8307
|
+
keyword?: string | undefined;
|
8308
|
+
company?: string[] | undefined;
|
8309
|
+
name?: string | undefined;
|
8310
|
+
address?: string | undefined;
|
8311
|
+
channel?: string[] | undefined;
|
8312
|
+
selectedDate?: string | undefined;
|
8313
|
+
customFields?: {
|
8314
|
+
type: string;
|
8315
|
+
value: (string | string[]) & (string | string[] | undefined);
|
8316
|
+
attributeId: string;
|
8317
|
+
}[] | undefined;
|
8318
|
+
tags?: string[] | undefined;
|
8319
|
+
phone?: string | undefined;
|
8320
|
+
email?: string | undefined;
|
8321
|
+
notes?: string | undefined;
|
8322
|
+
}, {
|
8323
|
+
page?: number | undefined;
|
8324
|
+
pageSize?: number | undefined;
|
8325
|
+
keyword?: string | undefined;
|
8326
|
+
company?: string[] | undefined;
|
8327
|
+
name?: string | undefined;
|
8328
|
+
address?: string | undefined;
|
8329
|
+
channel?: string[] | undefined;
|
8330
|
+
selectedDate?: string | undefined;
|
8331
|
+
customFields?: {
|
8332
|
+
type: string;
|
8333
|
+
value: (string | string[]) & (string | string[] | undefined);
|
8334
|
+
attributeId: string;
|
8335
|
+
}[] | undefined;
|
8336
|
+
tags?: string[] | undefined;
|
8337
|
+
phone?: string | undefined;
|
8338
|
+
email?: string | undefined;
|
8339
|
+
notes?: string | undefined;
|
8340
|
+
}>;
|
8341
|
+
responses: {
|
8342
|
+
200: null;
|
8343
|
+
400: z.ZodObject<{
|
8344
|
+
message: z.ZodString;
|
8345
|
+
}, "strip", z.ZodTypeAny, {
|
8346
|
+
message: string;
|
8347
|
+
}, {
|
8348
|
+
message: string;
|
8349
|
+
}>;
|
8350
|
+
401: z.ZodObject<{
|
8351
|
+
message: z.ZodString;
|
8352
|
+
error: z.ZodAny;
|
8353
|
+
}, "strip", z.ZodTypeAny, {
|
8354
|
+
message: string;
|
8355
|
+
error?: any;
|
8356
|
+
}, {
|
8357
|
+
message: string;
|
8358
|
+
error?: any;
|
8359
|
+
}>;
|
8360
|
+
404: z.ZodObject<{
|
8361
|
+
message: z.ZodString;
|
8362
|
+
error: z.ZodAny;
|
8363
|
+
}, "strip", z.ZodTypeAny, {
|
8364
|
+
message: string;
|
8365
|
+
error?: any;
|
8366
|
+
}, {
|
8367
|
+
message: string;
|
8368
|
+
error?: any;
|
8369
|
+
}>;
|
8370
|
+
};
|
8371
|
+
path: "contact/export";
|
8372
|
+
headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
8373
|
+
'x-tenant': z.ZodString;
|
8374
|
+
authorization: z.ZodString;
|
8375
|
+
'x-code': z.ZodOptional<z.ZodString>;
|
8376
|
+
'x-client-timezone': z.ZodDefault<z.ZodString>;
|
8377
|
+
}, "strip", z.ZodTypeAny, {
|
8378
|
+
'x-tenant': string;
|
8379
|
+
authorization: string;
|
8380
|
+
'x-client-timezone': string;
|
8381
|
+
'x-code'?: string | undefined;
|
8382
|
+
}, {
|
8383
|
+
'x-tenant': string;
|
8384
|
+
authorization: string;
|
8385
|
+
'x-code'?: string | undefined;
|
8386
|
+
'x-client-timezone'?: string | undefined;
|
8387
|
+
}>>>;
|
8388
|
+
};
|
8276
8389
|
};
|
8277
8390
|
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contact/index.ts"],"names":[],"mappings":"AAQA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,+BAA+B,EAAE,MAAM,cAAc,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAEzC,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CACxC,OAAO,+BAA+B,CAAC,MAAM,CAAC,OAAO,CACtD,CAAC;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CACzC,OAAO,+BAA+B,CAAC,MAAM,CAAC,QAAQ,CACvD,CAAC;AACF,MAAM,MAAM,2BAA2B,GAAG,CAAC,CAAC,KAAK,CAC/C,OAAO,+BAA+B,CAAC,oBAAoB,CAAC,OAAO,CACpE,CAAC;AACF,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,+BAA+B,CAAC,oBAAoB,CAAC,QAAQ,CACrE,CAAC;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CACxC,OAAO,+BAA+B,CAAC,MAAM,CAAC,OAAO,CACtD,CAAC;AACF,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CACzC,OAAO,+BAA+B,CAAC,cAAc,CAAC,OAAO,CAC9D,CAAC;AAEF,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,+BAA+B,CAAC,cAAc,CAAC,OAAO,CAC9D,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC;AACjE,MAAM,MAAM,mCAAmC,GAAG,OAAO,CACvD,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,qBAAqB,CAAC,OAAO,CAAC,CAC9E,CAAC;AACF,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CACxC,OAAO,+BAA+B,CAAC,KAAK,CAAC,OAAO,CACrD,CAAC;AACF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAC5C,OAAO,+BAA+B,CAAC,iBAAiB,CAAC,OAAO,CACjE,CAAC;AACF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAC5C,OAAO,+BAA+B,CAAC,iBAAiB,CAAC,OAAO,CACjE,CAAC;AACF,MAAM,MAAM,qBAAqB,GAAG,qBAAqB,CAAC;AAC1D,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEpD,eAAO,MAAM,eAAe
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/contact/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+S3B,CAAC"}
|
package/dist/src/contract.d.ts
CHANGED
@@ -42788,6 +42788,119 @@ export declare const apiContract: {
|
|
42788
42788
|
'x-client-timezone'?: string | undefined;
|
42789
42789
|
}>>>;
|
42790
42790
|
};
|
42791
|
+
getExportContacts: {
|
42792
|
+
method: "GET";
|
42793
|
+
query: import("zod").ZodObject<{
|
42794
|
+
page: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
|
42795
|
+
pageSize: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodNumber>>;
|
42796
|
+
keyword: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodString>>;
|
42797
|
+
company: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
42798
|
+
name: import("zod").ZodOptional<import("zod").ZodString>;
|
42799
|
+
address: import("zod").ZodOptional<import("zod").ZodString>;
|
42800
|
+
channel: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
42801
|
+
selectedDate: import("zod").ZodOptional<import("zod").ZodString>;
|
42802
|
+
customFields: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
42803
|
+
attributeId: import("zod").ZodString;
|
42804
|
+
type: import("zod").ZodString;
|
42805
|
+
value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
|
42806
|
+
}, "strip", import("zod").ZodTypeAny, {
|
42807
|
+
type: string;
|
42808
|
+
value: (string | string[]) & (string | string[] | undefined);
|
42809
|
+
attributeId: string;
|
42810
|
+
}, {
|
42811
|
+
type: string;
|
42812
|
+
value: (string | string[]) & (string | string[] | undefined);
|
42813
|
+
attributeId: string;
|
42814
|
+
}>, "many">>;
|
42815
|
+
tags: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
42816
|
+
phone: import("zod").ZodOptional<import("zod").ZodString>;
|
42817
|
+
email: import("zod").ZodOptional<import("zod").ZodString>;
|
42818
|
+
notes: import("zod").ZodOptional<import("zod").ZodString>;
|
42819
|
+
}, "strip", import("zod").ZodTypeAny, {
|
42820
|
+
page?: number | undefined;
|
42821
|
+
pageSize?: number | undefined;
|
42822
|
+
keyword?: string | undefined;
|
42823
|
+
company?: string[] | undefined;
|
42824
|
+
name?: string | undefined;
|
42825
|
+
address?: string | undefined;
|
42826
|
+
channel?: string[] | undefined;
|
42827
|
+
selectedDate?: string | undefined;
|
42828
|
+
customFields?: {
|
42829
|
+
type: string;
|
42830
|
+
value: (string | string[]) & (string | string[] | undefined);
|
42831
|
+
attributeId: string;
|
42832
|
+
}[] | undefined;
|
42833
|
+
tags?: string[] | undefined;
|
42834
|
+
phone?: string | undefined;
|
42835
|
+
email?: string | undefined;
|
42836
|
+
notes?: string | undefined;
|
42837
|
+
}, {
|
42838
|
+
page?: number | undefined;
|
42839
|
+
pageSize?: number | undefined;
|
42840
|
+
keyword?: string | undefined;
|
42841
|
+
company?: string[] | undefined;
|
42842
|
+
name?: string | undefined;
|
42843
|
+
address?: string | undefined;
|
42844
|
+
channel?: string[] | undefined;
|
42845
|
+
selectedDate?: string | undefined;
|
42846
|
+
customFields?: {
|
42847
|
+
type: string;
|
42848
|
+
value: (string | string[]) & (string | string[] | undefined);
|
42849
|
+
attributeId: string;
|
42850
|
+
}[] | undefined;
|
42851
|
+
tags?: string[] | undefined;
|
42852
|
+
phone?: string | undefined;
|
42853
|
+
email?: string | undefined;
|
42854
|
+
notes?: string | undefined;
|
42855
|
+
}>;
|
42856
|
+
responses: {
|
42857
|
+
200: null;
|
42858
|
+
400: import("zod").ZodObject<{
|
42859
|
+
message: import("zod").ZodString;
|
42860
|
+
}, "strip", import("zod").ZodTypeAny, {
|
42861
|
+
message: string;
|
42862
|
+
}, {
|
42863
|
+
message: string;
|
42864
|
+
}>;
|
42865
|
+
401: import("zod").ZodObject<{
|
42866
|
+
message: import("zod").ZodString;
|
42867
|
+
error: import("zod").ZodAny;
|
42868
|
+
}, "strip", import("zod").ZodTypeAny, {
|
42869
|
+
message: string;
|
42870
|
+
error?: any;
|
42871
|
+
}, {
|
42872
|
+
message: string;
|
42873
|
+
error?: any;
|
42874
|
+
}>;
|
42875
|
+
404: import("zod").ZodObject<{
|
42876
|
+
message: import("zod").ZodString;
|
42877
|
+
error: import("zod").ZodAny;
|
42878
|
+
}, "strip", import("zod").ZodTypeAny, {
|
42879
|
+
message: string;
|
42880
|
+
error?: any;
|
42881
|
+
}, {
|
42882
|
+
message: string;
|
42883
|
+
error?: any;
|
42884
|
+
}>;
|
42885
|
+
};
|
42886
|
+
path: "contact/export";
|
42887
|
+
headers: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodObject<{
|
42888
|
+
'x-tenant': import("zod").ZodString;
|
42889
|
+
authorization: import("zod").ZodString;
|
42890
|
+
'x-code': import("zod").ZodOptional<import("zod").ZodString>;
|
42891
|
+
'x-client-timezone': import("zod").ZodDefault<import("zod").ZodString>;
|
42892
|
+
}, "strip", import("zod").ZodTypeAny, {
|
42893
|
+
'x-tenant': string;
|
42894
|
+
authorization: string;
|
42895
|
+
'x-client-timezone': string;
|
42896
|
+
'x-code'?: string | undefined;
|
42897
|
+
}, {
|
42898
|
+
'x-tenant': string;
|
42899
|
+
authorization: string;
|
42900
|
+
'x-code'?: string | undefined;
|
42901
|
+
'x-client-timezone'?: string | undefined;
|
42902
|
+
}>>>;
|
42903
|
+
};
|
42791
42904
|
};
|
42792
42905
|
company: {
|
42793
42906
|
create: {
|