@kl1/contracts 1.1.48-uat → 1.1.49-uat
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 +50 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +44 -8
- package/dist/index.mjs.map +1 -1
- package/dist/src/contract.d.ts +3214 -15
- package/dist/src/contract.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -33,11 +33,11 @@ __export(src_exports, {
|
|
33
33
|
activityLogContract: () => activityLogContract,
|
34
34
|
apiContract: () => apiContract,
|
35
35
|
attributeContract: () => attributeContract,
|
36
|
-
attributeSettingContact: () => attributeSettingContact,
|
37
36
|
botContract: () => botContract,
|
38
37
|
botpressContract: () => botpressContract,
|
39
38
|
businessCalendarContract: () => businessCalendarContract2,
|
40
39
|
businessCalendarSettingContract: () => businessCalendarSettingContract,
|
40
|
+
caseLogSettingContract: () => caseLogSettingContract,
|
41
41
|
categoryContract: () => categoryContract,
|
42
42
|
categorySettingContract: () => categorySettingContract,
|
43
43
|
channelBotContract: () => channelBotContract,
|
@@ -46,11 +46,15 @@ __export(src_exports, {
|
|
46
46
|
commentActivityContract: () => commentActivityContract,
|
47
47
|
commentContract: () => commentContract,
|
48
48
|
companyContract: () => companyContract,
|
49
|
+
companySettingContract: () => companySettingContract,
|
49
50
|
contactContract: () => contactContract2,
|
51
|
+
contactLabelSettingContract: () => contactLabelSettingContract,
|
52
|
+
contactSettingContract: () => contactSettingContract,
|
50
53
|
cxLogContract: () => cxLogContract,
|
51
54
|
dashboardContract: () => dashboardContract,
|
52
55
|
evaluateFormContract: () => evaluateFormContract,
|
53
56
|
extensionContract: () => extensionContract2,
|
57
|
+
generalTagSettingContract: () => generalTagSettingContract,
|
54
58
|
mailApiContract: () => mailApiContract,
|
55
59
|
mailContract: () => mailContract,
|
56
60
|
notificationContract: () => notificationContract,
|
@@ -64,10 +68,10 @@ __export(src_exports, {
|
|
64
68
|
snippetSettingContract: () => snippetSettingContract,
|
65
69
|
subscriptionContract: () => subscriptionContract,
|
66
70
|
tagContract: () => tagContract,
|
67
|
-
tagSettingContract: () => tagSettingContract,
|
68
71
|
telephonyCdrContract: () => telephonyCdrContract,
|
69
72
|
telephonyContract: () => telephonyContract,
|
70
73
|
ticketContract: () => ticketContract2,
|
74
|
+
ticketSettingContract: () => ticketSettingContract,
|
71
75
|
uploadContract: () => uploadContract,
|
72
76
|
userContract: () => userContract,
|
73
77
|
userNotificationContract: () => userNotificationContract,
|
@@ -7932,20 +7936,52 @@ var workflowContract = (0, import_core43.initContract)().router(
|
|
7932
7936
|
}
|
7933
7937
|
);
|
7934
7938
|
var settingsPathPrefix = "settings/";
|
7935
|
-
var
|
7939
|
+
var ticketSettingContract = (0, import_core43.initContract)().router(
|
7936
7940
|
{
|
7937
|
-
|
7941
|
+
ticketSetting: attributeContract
|
7938
7942
|
},
|
7939
7943
|
{
|
7940
|
-
pathPrefix: settingsPathPrefix
|
7944
|
+
pathPrefix: `${settingsPathPrefix}/ticket/`
|
7941
7945
|
}
|
7942
7946
|
);
|
7943
|
-
var
|
7947
|
+
var contactSettingContract = (0, import_core43.initContract)().router(
|
7944
7948
|
{
|
7945
|
-
|
7949
|
+
contactSetting: attributeContract
|
7946
7950
|
},
|
7947
7951
|
{
|
7948
|
-
pathPrefix: settingsPathPrefix
|
7952
|
+
pathPrefix: `${settingsPathPrefix}/contact/`
|
7953
|
+
}
|
7954
|
+
);
|
7955
|
+
var companySettingContract = (0, import_core43.initContract)().router(
|
7956
|
+
{
|
7957
|
+
companySetting: attributeContract
|
7958
|
+
},
|
7959
|
+
{
|
7960
|
+
pathPrefix: `${settingsPathPrefix}/company/`
|
7961
|
+
}
|
7962
|
+
);
|
7963
|
+
var caseLogSettingContract = (0, import_core43.initContract)().router(
|
7964
|
+
{
|
7965
|
+
caseLogSetting: attributeContract
|
7966
|
+
},
|
7967
|
+
{
|
7968
|
+
pathPrefix: `${settingsPathPrefix}/case_log/`
|
7969
|
+
}
|
7970
|
+
);
|
7971
|
+
var generalTagSettingContract = (0, import_core43.initContract)().router(
|
7972
|
+
{
|
7973
|
+
generalTag: tagContract
|
7974
|
+
},
|
7975
|
+
{
|
7976
|
+
pathPrefix: `${settingsPathPrefix}/general_tag/`
|
7977
|
+
}
|
7978
|
+
);
|
7979
|
+
var contactLabelSettingContract = (0, import_core43.initContract)().router(
|
7980
|
+
{
|
7981
|
+
contactLabel: tagContract
|
7982
|
+
},
|
7983
|
+
{
|
7984
|
+
pathPrefix: `${settingsPathPrefix}/contact_label/`
|
7949
7985
|
}
|
7950
7986
|
);
|
7951
7987
|
var categorySettingContract = (0, import_core43.initContract)().router(
|
@@ -8266,11 +8302,11 @@ var platformWebchatContract = (0, import_core45.initContract)().router({
|
|
8266
8302
|
activityLogContract,
|
8267
8303
|
apiContract,
|
8268
8304
|
attributeContract,
|
8269
|
-
attributeSettingContact,
|
8270
8305
|
botContract,
|
8271
8306
|
botpressContract,
|
8272
8307
|
businessCalendarContract,
|
8273
8308
|
businessCalendarSettingContract,
|
8309
|
+
caseLogSettingContract,
|
8274
8310
|
categoryContract,
|
8275
8311
|
categorySettingContract,
|
8276
8312
|
channelBotContract,
|
@@ -8279,11 +8315,15 @@ var platformWebchatContract = (0, import_core45.initContract)().router({
|
|
8279
8315
|
commentActivityContract,
|
8280
8316
|
commentContract,
|
8281
8317
|
companyContract,
|
8318
|
+
companySettingContract,
|
8282
8319
|
contactContract,
|
8320
|
+
contactLabelSettingContract,
|
8321
|
+
contactSettingContract,
|
8283
8322
|
cxLogContract,
|
8284
8323
|
dashboardContract,
|
8285
8324
|
evaluateFormContract,
|
8286
8325
|
extensionContract,
|
8326
|
+
generalTagSettingContract,
|
8287
8327
|
mailApiContract,
|
8288
8328
|
mailContract,
|
8289
8329
|
notificationContract,
|
@@ -8297,10 +8337,10 @@ var platformWebchatContract = (0, import_core45.initContract)().router({
|
|
8297
8337
|
snippetSettingContract,
|
8298
8338
|
subscriptionContract,
|
8299
8339
|
tagContract,
|
8300
|
-
tagSettingContract,
|
8301
8340
|
telephonyCdrContract,
|
8302
8341
|
telephonyContract,
|
8303
8342
|
ticketContract,
|
8343
|
+
ticketSettingContract,
|
8304
8344
|
uploadContract,
|
8305
8345
|
userContract,
|
8306
8346
|
userNotificationContract,
|