syllable-sdk 0.1.0-alpha.146 → 0.1.0-alpha.149
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/README.md +8 -0
- package/docs/sdks/batches/README.md +4 -4
- package/docs/sdks/campaigns/README.md +78 -0
- package/docs/sdks/folders/README.md +168 -0
- package/docs/sdks/numbers/README.md +1 -1
- package/docs/sdks/syllablesdktools/README.md +78 -0
- package/docs/sdks/workflows/README.md +9 -9
- package/funcs/insightsFoldersDelete.d.ts +13 -0
- package/funcs/insightsFoldersDelete.d.ts.map +1 -0
- package/funcs/insightsFoldersDelete.js +105 -0
- package/funcs/insightsFoldersDelete.js.map +1 -0
- package/funcs/insightsFoldersMoveFiles.d.ts +14 -0
- package/funcs/insightsFoldersMoveFiles.d.ts.map +1 -0
- package/funcs/insightsFoldersMoveFiles.js +109 -0
- package/funcs/insightsFoldersMoveFiles.js.map +1 -0
- package/funcs/insightsToolsDelete.d.ts +16 -0
- package/funcs/insightsToolsDelete.d.ts.map +1 -0
- package/funcs/insightsToolsDelete.js +108 -0
- package/funcs/insightsToolsDelete.js.map +1 -0
- package/funcs/outboundCampaignsDelete.d.ts +13 -0
- package/funcs/outboundCampaignsDelete.d.ts.map +1 -0
- package/funcs/outboundCampaignsDelete.js +105 -0
- package/funcs/outboundCampaignsDelete.js.map +1 -0
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/index.d.ts +1 -0
- package/models/components/index.d.ts.map +1 -1
- package/models/components/index.js +1 -0
- package/models/components/index.js.map +1 -1
- package/models/components/insightsfolderfilemove.d.ts +40 -0
- package/models/components/insightsfolderfilemove.d.ts.map +1 -0
- package/models/components/insightsfolderfilemove.js +72 -0
- package/models/components/insightsfolderfilemove.js.map +1 -0
- package/models/operations/index.d.ts +4 -0
- package/models/operations/index.d.ts.map +1 -1
- package/models/operations/index.js +4 -0
- package/models/operations/index.js.map +1 -1
- package/models/operations/insightsfolderdelete.d.ts +29 -0
- package/models/operations/insightsfolderdelete.d.ts.map +1 -0
- package/models/operations/insightsfolderdelete.js +68 -0
- package/models/operations/insightsfolderdelete.js.map +1 -0
- package/models/operations/insightstooldelete.d.ts +29 -0
- package/models/operations/insightstooldelete.d.ts.map +1 -0
- package/models/operations/insightstooldelete.js +68 -0
- package/models/operations/insightstooldelete.js.map +1 -0
- package/models/operations/insightsuploadmovefiles.d.ts +32 -0
- package/models/operations/insightsuploadmovefiles.d.ts.map +1 -0
- package/models/operations/insightsuploadmovefiles.js +73 -0
- package/models/operations/insightsuploadmovefiles.js.map +1 -0
- package/models/operations/outboundcampaigndelete.d.ts +29 -0
- package/models/operations/outboundcampaigndelete.d.ts.map +1 -0
- package/models/operations/outboundcampaigndelete.js +68 -0
- package/models/operations/outboundcampaigndelete.js.map +1 -0
- package/openapi.json +275 -35
- package/package.json +1 -1
- package/sdk/campaigns.d.ts +4 -0
- package/sdk/campaigns.d.ts.map +1 -1
- package/sdk/campaigns.js +7 -0
- package/sdk/campaigns.js.map +1 -1
- package/sdk/folders.d.ts +8 -0
- package/sdk/folders.d.ts.map +1 -1
- package/sdk/folders.js +14 -0
- package/sdk/folders.js.map +1 -1
- package/sdk/syllablesdktools.d.ts +7 -0
- package/sdk/syllablesdktools.d.ts.map +1 -1
- package/sdk/syllablesdktools.js +10 -0
- package/sdk/syllablesdktools.js.map +1 -1
- package/src/funcs/insightsFoldersDelete.ts +140 -0
- package/src/funcs/insightsFoldersMoveFiles.ts +146 -0
- package/src/funcs/insightsToolsDelete.ts +144 -0
- package/src/funcs/outboundCampaignsDelete.ts +142 -0
- package/src/lib/config.ts +2 -2
- package/src/models/components/index.ts +1 -0
- package/src/models/components/insightsfolderfilemove.ts +90 -0
- package/src/models/operations/index.ts +4 -0
- package/src/models/operations/insightsfolderdelete.ts +77 -0
- package/src/models/operations/insightstooldelete.ts +75 -0
- package/src/models/operations/insightsuploadmovefiles.ts +84 -0
- package/src/models/operations/outboundcampaigndelete.ts +77 -0
- package/src/sdk/campaigns.ts +15 -0
- package/src/sdk/folders.ts +30 -0
- package/src/sdk/syllablesdktools.ts +18 -0
package/openapi.json
CHANGED
|
@@ -2742,6 +2742,52 @@
|
|
|
2742
2742
|
}
|
|
2743
2743
|
}
|
|
2744
2744
|
},
|
|
2745
|
+
"delete": {
|
|
2746
|
+
"tags": [
|
|
2747
|
+
"insights.folders"
|
|
2748
|
+
],
|
|
2749
|
+
"summary": "Delete Insights Folder",
|
|
2750
|
+
"operationId": "insights_folder_delete",
|
|
2751
|
+
"security": [
|
|
2752
|
+
{
|
|
2753
|
+
"APIKeyHeader": []
|
|
2754
|
+
}
|
|
2755
|
+
],
|
|
2756
|
+
"parameters": [
|
|
2757
|
+
{
|
|
2758
|
+
"name": "folder_id",
|
|
2759
|
+
"in": "path",
|
|
2760
|
+
"required": true,
|
|
2761
|
+
"schema": {
|
|
2762
|
+
"type": "integer",
|
|
2763
|
+
"title": "Folder Id"
|
|
2764
|
+
}
|
|
2765
|
+
}
|
|
2766
|
+
],
|
|
2767
|
+
"responses": {
|
|
2768
|
+
"200": {
|
|
2769
|
+
"description": "Successful Response",
|
|
2770
|
+
"content": {
|
|
2771
|
+
"application/json": {
|
|
2772
|
+
"schema": {
|
|
2773
|
+
"type": "boolean",
|
|
2774
|
+
"title": "Response Insights Folder Delete"
|
|
2775
|
+
}
|
|
2776
|
+
}
|
|
2777
|
+
}
|
|
2778
|
+
},
|
|
2779
|
+
"422": {
|
|
2780
|
+
"description": "Validation Error",
|
|
2781
|
+
"content": {
|
|
2782
|
+
"application/json": {
|
|
2783
|
+
"schema": {
|
|
2784
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
2785
|
+
}
|
|
2786
|
+
}
|
|
2787
|
+
}
|
|
2788
|
+
}
|
|
2789
|
+
}
|
|
2790
|
+
},
|
|
2745
2791
|
"put": {
|
|
2746
2792
|
"tags": [
|
|
2747
2793
|
"insights.folders"
|
|
@@ -3198,6 +3244,67 @@
|
|
|
3198
3244
|
}
|
|
3199
3245
|
}
|
|
3200
3246
|
},
|
|
3247
|
+
"/api/v1/insights/folders/{folder_id}/move-files": {
|
|
3248
|
+
"post": {
|
|
3249
|
+
"tags": [
|
|
3250
|
+
"insights.folders"
|
|
3251
|
+
],
|
|
3252
|
+
"summary": "Move Insights Upload Files",
|
|
3253
|
+
"operationId": "insights_upload_move_files",
|
|
3254
|
+
"security": [
|
|
3255
|
+
{
|
|
3256
|
+
"APIKeyHeader": []
|
|
3257
|
+
}
|
|
3258
|
+
],
|
|
3259
|
+
"parameters": [
|
|
3260
|
+
{
|
|
3261
|
+
"name": "folder_id",
|
|
3262
|
+
"in": "path",
|
|
3263
|
+
"required": true,
|
|
3264
|
+
"schema": {
|
|
3265
|
+
"type": "integer",
|
|
3266
|
+
"title": "Folder Id"
|
|
3267
|
+
}
|
|
3268
|
+
}
|
|
3269
|
+
],
|
|
3270
|
+
"requestBody": {
|
|
3271
|
+
"required": true,
|
|
3272
|
+
"content": {
|
|
3273
|
+
"application/json": {
|
|
3274
|
+
"schema": {
|
|
3275
|
+
"$ref": "#/components/schemas/InsightsFolderFileMove"
|
|
3276
|
+
}
|
|
3277
|
+
}
|
|
3278
|
+
}
|
|
3279
|
+
},
|
|
3280
|
+
"responses": {
|
|
3281
|
+
"200": {
|
|
3282
|
+
"description": "Successful Response",
|
|
3283
|
+
"content": {
|
|
3284
|
+
"application/json": {
|
|
3285
|
+
"schema": {
|
|
3286
|
+
"type": "array",
|
|
3287
|
+
"items": {
|
|
3288
|
+
"$ref": "#/components/schemas/InsightsUploadFile"
|
|
3289
|
+
},
|
|
3290
|
+
"title": "Response Insights Upload Move Files"
|
|
3291
|
+
}
|
|
3292
|
+
}
|
|
3293
|
+
}
|
|
3294
|
+
},
|
|
3295
|
+
"422": {
|
|
3296
|
+
"description": "Validation Error",
|
|
3297
|
+
"content": {
|
|
3298
|
+
"application/json": {
|
|
3299
|
+
"schema": {
|
|
3300
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
3301
|
+
}
|
|
3302
|
+
}
|
|
3303
|
+
}
|
|
3304
|
+
}
|
|
3305
|
+
}
|
|
3306
|
+
}
|
|
3307
|
+
},
|
|
3201
3308
|
"/api/v1/insights/workflows/": {
|
|
3202
3309
|
"get": {
|
|
3203
3310
|
"tags": [
|
|
@@ -4116,6 +4223,62 @@
|
|
|
4116
4223
|
}
|
|
4117
4224
|
}
|
|
4118
4225
|
},
|
|
4226
|
+
"delete": {
|
|
4227
|
+
"tags": [
|
|
4228
|
+
"insights.tools"
|
|
4229
|
+
],
|
|
4230
|
+
"summary": "Delete Insight Tool Configuration",
|
|
4231
|
+
"description": "Delete an Insights tool configuration.",
|
|
4232
|
+
"operationId": "insights_tool_delete",
|
|
4233
|
+
"security": [
|
|
4234
|
+
{
|
|
4235
|
+
"APIKeyHeader": []
|
|
4236
|
+
}
|
|
4237
|
+
],
|
|
4238
|
+
"parameters": [
|
|
4239
|
+
{
|
|
4240
|
+
"name": "tool_id",
|
|
4241
|
+
"in": "path",
|
|
4242
|
+
"required": true,
|
|
4243
|
+
"schema": {
|
|
4244
|
+
"type": "integer",
|
|
4245
|
+
"title": "Tool Id"
|
|
4246
|
+
}
|
|
4247
|
+
}
|
|
4248
|
+
],
|
|
4249
|
+
"responses": {
|
|
4250
|
+
"200": {
|
|
4251
|
+
"description": "Successful Response",
|
|
4252
|
+
"content": {
|
|
4253
|
+
"application/json": {
|
|
4254
|
+
"schema": {}
|
|
4255
|
+
}
|
|
4256
|
+
}
|
|
4257
|
+
},
|
|
4258
|
+
"400": {
|
|
4259
|
+
"description": "Bad Request"
|
|
4260
|
+
},
|
|
4261
|
+
"404": {
|
|
4262
|
+
"description": "Not Found"
|
|
4263
|
+
},
|
|
4264
|
+
"412": {
|
|
4265
|
+
"description": "Precondition Failed"
|
|
4266
|
+
},
|
|
4267
|
+
"500": {
|
|
4268
|
+
"description": "Internal Server Error"
|
|
4269
|
+
},
|
|
4270
|
+
"422": {
|
|
4271
|
+
"description": "Validation Error",
|
|
4272
|
+
"content": {
|
|
4273
|
+
"application/json": {
|
|
4274
|
+
"schema": {
|
|
4275
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
4276
|
+
}
|
|
4277
|
+
}
|
|
4278
|
+
}
|
|
4279
|
+
}
|
|
4280
|
+
}
|
|
4281
|
+
},
|
|
4119
4282
|
"put": {
|
|
4120
4283
|
"tags": [
|
|
4121
4284
|
"insights.tools"
|
|
@@ -9582,6 +9745,49 @@
|
|
|
9582
9745
|
}
|
|
9583
9746
|
}
|
|
9584
9747
|
}
|
|
9748
|
+
},
|
|
9749
|
+
"delete": {
|
|
9750
|
+
"tags": [
|
|
9751
|
+
"outbound.campaigns"
|
|
9752
|
+
],
|
|
9753
|
+
"summary": "Delete Outbound Communication Campaign",
|
|
9754
|
+
"operationId": "outbound_campaign_delete",
|
|
9755
|
+
"security": [
|
|
9756
|
+
{
|
|
9757
|
+
"APIKeyHeader": []
|
|
9758
|
+
}
|
|
9759
|
+
],
|
|
9760
|
+
"parameters": [
|
|
9761
|
+
{
|
|
9762
|
+
"name": "campaign_id",
|
|
9763
|
+
"in": "path",
|
|
9764
|
+
"required": true,
|
|
9765
|
+
"schema": {
|
|
9766
|
+
"type": "integer",
|
|
9767
|
+
"title": "Campaign Id"
|
|
9768
|
+
}
|
|
9769
|
+
}
|
|
9770
|
+
],
|
|
9771
|
+
"responses": {
|
|
9772
|
+
"200": {
|
|
9773
|
+
"description": "Successful Response",
|
|
9774
|
+
"content": {
|
|
9775
|
+
"application/json": {
|
|
9776
|
+
"schema": {}
|
|
9777
|
+
}
|
|
9778
|
+
}
|
|
9779
|
+
},
|
|
9780
|
+
"422": {
|
|
9781
|
+
"description": "Validation Error",
|
|
9782
|
+
"content": {
|
|
9783
|
+
"application/json": {
|
|
9784
|
+
"schema": {
|
|
9785
|
+
"$ref": "#/components/schemas/HTTPValidationError"
|
|
9786
|
+
}
|
|
9787
|
+
}
|
|
9788
|
+
}
|
|
9789
|
+
}
|
|
9790
|
+
}
|
|
9585
9791
|
}
|
|
9586
9792
|
},
|
|
9587
9793
|
"/api/v1/language_groups/": {
|
|
@@ -11329,7 +11535,7 @@
|
|
|
11329
11535
|
"title": "Batch Id",
|
|
11330
11536
|
"description": "Unique ID for conversation batch",
|
|
11331
11537
|
"examples": [
|
|
11332
|
-
"
|
|
11538
|
+
"20250514.9"
|
|
11333
11539
|
]
|
|
11334
11540
|
},
|
|
11335
11541
|
"campaign_id": {
|
|
@@ -11353,7 +11559,7 @@
|
|
|
11353
11559
|
"title": "Expires On",
|
|
11354
11560
|
"description": "Timestamp of batch expiration",
|
|
11355
11561
|
"examples": [
|
|
11356
|
-
"2025-05-
|
|
11562
|
+
"2025-05-15T00:00:00Z"
|
|
11357
11563
|
]
|
|
11358
11564
|
},
|
|
11359
11565
|
"paused": {
|
|
@@ -11406,7 +11612,7 @@
|
|
|
11406
11612
|
"title": "Created At",
|
|
11407
11613
|
"description": "Timestamp of batch creation",
|
|
11408
11614
|
"examples": [
|
|
11409
|
-
"2025-05-
|
|
11615
|
+
"2025-05-14T00:00:00Z"
|
|
11410
11616
|
]
|
|
11411
11617
|
},
|
|
11412
11618
|
"deleted_at": {
|
|
@@ -11422,7 +11628,7 @@
|
|
|
11422
11628
|
"title": "Deleted At",
|
|
11423
11629
|
"description": "Timestamp of batch deletion",
|
|
11424
11630
|
"examples": [
|
|
11425
|
-
"2025-05-
|
|
11631
|
+
"2025-05-14T00:00:00Z"
|
|
11426
11632
|
]
|
|
11427
11633
|
},
|
|
11428
11634
|
"deleted_reason": {
|
|
@@ -11453,7 +11659,7 @@
|
|
|
11453
11659
|
"title": "Last Updated At",
|
|
11454
11660
|
"description": "Timestamp of last change to batch",
|
|
11455
11661
|
"examples": [
|
|
11456
|
-
"2025-05-
|
|
11662
|
+
"2025-05-14T00:00:00Z"
|
|
11457
11663
|
]
|
|
11458
11664
|
},
|
|
11459
11665
|
"last_updated_by": {
|
|
@@ -11968,7 +12174,7 @@
|
|
|
11968
12174
|
"title": "Batch Id",
|
|
11969
12175
|
"description": "Unique ID for conversation batch",
|
|
11970
12176
|
"examples": [
|
|
11971
|
-
"
|
|
12177
|
+
"20250514.9"
|
|
11972
12178
|
]
|
|
11973
12179
|
},
|
|
11974
12180
|
"campaign_id": {
|
|
@@ -11992,7 +12198,7 @@
|
|
|
11992
12198
|
"title": "Expires On",
|
|
11993
12199
|
"description": "Timestamp of batch expiration",
|
|
11994
12200
|
"examples": [
|
|
11995
|
-
"2025-05-
|
|
12201
|
+
"2025-05-15T00:00:00Z"
|
|
11996
12202
|
]
|
|
11997
12203
|
},
|
|
11998
12204
|
"paused": {
|
|
@@ -12045,7 +12251,7 @@
|
|
|
12045
12251
|
"title": "Created At",
|
|
12046
12252
|
"description": "Timestamp of batch creation",
|
|
12047
12253
|
"examples": [
|
|
12048
|
-
"2025-05-
|
|
12254
|
+
"2025-05-14T00:00:00Z"
|
|
12049
12255
|
]
|
|
12050
12256
|
},
|
|
12051
12257
|
"deleted_at": {
|
|
@@ -12061,7 +12267,7 @@
|
|
|
12061
12267
|
"title": "Deleted At",
|
|
12062
12268
|
"description": "Timestamp of batch deletion",
|
|
12063
12269
|
"examples": [
|
|
12064
|
-
"2025-05-
|
|
12270
|
+
"2025-05-14T00:00:00Z"
|
|
12065
12271
|
]
|
|
12066
12272
|
},
|
|
12067
12273
|
"deleted_reason": {
|
|
@@ -12092,7 +12298,7 @@
|
|
|
12092
12298
|
"title": "Last Updated At",
|
|
12093
12299
|
"description": "Timestamp of last change to batch",
|
|
12094
12300
|
"examples": [
|
|
12095
|
-
"2025-05-
|
|
12301
|
+
"2025-05-14T00:00:00Z"
|
|
12096
12302
|
]
|
|
12097
12303
|
},
|
|
12098
12304
|
"last_updated_by": {
|
|
@@ -12135,7 +12341,7 @@
|
|
|
12135
12341
|
"title": "Batch Id",
|
|
12136
12342
|
"description": "Unique ID for conversation batch",
|
|
12137
12343
|
"examples": [
|
|
12138
|
-
"
|
|
12344
|
+
"20250514.9"
|
|
12139
12345
|
]
|
|
12140
12346
|
},
|
|
12141
12347
|
"campaign_id": {
|
|
@@ -12159,7 +12365,7 @@
|
|
|
12159
12365
|
"title": "Expires On",
|
|
12160
12366
|
"description": "Timestamp of batch expiration",
|
|
12161
12367
|
"examples": [
|
|
12162
|
-
"2025-05-
|
|
12368
|
+
"2025-05-15T00:00:00Z"
|
|
12163
12369
|
]
|
|
12164
12370
|
},
|
|
12165
12371
|
"paused": {
|
|
@@ -12300,7 +12506,7 @@
|
|
|
12300
12506
|
"title": "Created At",
|
|
12301
12507
|
"description": "Timestamp of request creation",
|
|
12302
12508
|
"examples": [
|
|
12303
|
-
"2025-05-
|
|
12509
|
+
"2025-05-13T00:00:00Z"
|
|
12304
12510
|
]
|
|
12305
12511
|
},
|
|
12306
12512
|
"sent_at": {
|
|
@@ -12316,7 +12522,7 @@
|
|
|
12316
12522
|
"title": "Sent At",
|
|
12317
12523
|
"description": "Timestamp at which request was sent",
|
|
12318
12524
|
"examples": [
|
|
12319
|
-
"2025-05-
|
|
12525
|
+
"2025-05-14T00:00:00Z"
|
|
12320
12526
|
]
|
|
12321
12527
|
},
|
|
12322
12528
|
"attempt_count": {
|
|
@@ -14215,7 +14421,7 @@
|
|
|
14215
14421
|
"title": "Created At",
|
|
14216
14422
|
"description": "Timestamp at which insight upload folder was created",
|
|
14217
14423
|
"examples": [
|
|
14218
|
-
"2025-05-
|
|
14424
|
+
"2025-05-13T00:00:00Z"
|
|
14219
14425
|
]
|
|
14220
14426
|
},
|
|
14221
14427
|
"updated_at": {
|
|
@@ -14224,7 +14430,7 @@
|
|
|
14224
14430
|
"title": "Updated At",
|
|
14225
14431
|
"description": "Timestamp at which insight upload folder was last updated",
|
|
14226
14432
|
"examples": [
|
|
14227
|
-
"2025-05-
|
|
14433
|
+
"2025-05-14T00:00:00Z"
|
|
14228
14434
|
]
|
|
14229
14435
|
},
|
|
14230
14436
|
"last_updated_by": {
|
|
@@ -14939,7 +15145,7 @@
|
|
|
14939
15145
|
"title": "Created At",
|
|
14940
15146
|
"description": "Timestamp of at which insight tool configuration was created",
|
|
14941
15147
|
"examples": [
|
|
14942
|
-
"2025-05-
|
|
15148
|
+
"2025-05-13T00:00:00Z"
|
|
14943
15149
|
]
|
|
14944
15150
|
},
|
|
14945
15151
|
"updated_at": {
|
|
@@ -14948,7 +15154,7 @@
|
|
|
14948
15154
|
"title": "Updated At",
|
|
14949
15155
|
"description": "Timestamp at which insight tool configuration was last updated",
|
|
14950
15156
|
"examples": [
|
|
14951
|
-
"2025-05-
|
|
15157
|
+
"2025-05-14T00:00:00Z"
|
|
14952
15158
|
]
|
|
14953
15159
|
},
|
|
14954
15160
|
"last_updated_by": {
|
|
@@ -15293,7 +15499,7 @@
|
|
|
15293
15499
|
"title": "Start Datetime",
|
|
15294
15500
|
"description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
|
|
15295
15501
|
"examples": [
|
|
15296
|
-
"2025-05-
|
|
15502
|
+
"2025-05-13T00:00:00Z"
|
|
15297
15503
|
]
|
|
15298
15504
|
},
|
|
15299
15505
|
"end_datetime": {
|
|
@@ -15309,7 +15515,7 @@
|
|
|
15309
15515
|
"title": "End Datetime",
|
|
15310
15516
|
"description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
|
|
15311
15517
|
"examples": [
|
|
15312
|
-
"2025-05-
|
|
15518
|
+
"2025-05-14T00:00:00Z"
|
|
15313
15519
|
]
|
|
15314
15520
|
}
|
|
15315
15521
|
},
|
|
@@ -15383,7 +15589,7 @@
|
|
|
15383
15589
|
"title": "Start Datetime",
|
|
15384
15590
|
"description": "Timestamp for when the insight workflow should start. An empty value indicates start on activation",
|
|
15385
15591
|
"examples": [
|
|
15386
|
-
"2025-05-
|
|
15592
|
+
"2025-05-13T00:00:00Z"
|
|
15387
15593
|
]
|
|
15388
15594
|
},
|
|
15389
15595
|
"end_datetime": {
|
|
@@ -15399,7 +15605,7 @@
|
|
|
15399
15605
|
"title": "End Datetime",
|
|
15400
15606
|
"description": "Timestamp of when the insight workflow should end. An empty value indicates no end",
|
|
15401
15607
|
"examples": [
|
|
15402
|
-
"2025-05-
|
|
15608
|
+
"2025-05-14T00:00:00Z"
|
|
15403
15609
|
]
|
|
15404
15610
|
},
|
|
15405
15611
|
"id": {
|
|
@@ -15437,7 +15643,7 @@
|
|
|
15437
15643
|
"title": "Created At",
|
|
15438
15644
|
"description": "Timestamp at which the insight workflow was created",
|
|
15439
15645
|
"examples": [
|
|
15440
|
-
"2025-05-
|
|
15646
|
+
"2025-05-13T00:00:00Z"
|
|
15441
15647
|
]
|
|
15442
15648
|
},
|
|
15443
15649
|
"updated_at": {
|
|
@@ -15446,7 +15652,7 @@
|
|
|
15446
15652
|
"title": "Updated At",
|
|
15447
15653
|
"description": "Timestamp of most recent update to the insight workflow",
|
|
15448
15654
|
"examples": [
|
|
15449
|
-
"2025-05-
|
|
15655
|
+
"2025-05-14T00:00:00Z"
|
|
15450
15656
|
]
|
|
15451
15657
|
},
|
|
15452
15658
|
"last_updated_by": {
|
|
@@ -15542,7 +15748,7 @@
|
|
|
15542
15748
|
"title": "Created At",
|
|
15543
15749
|
"description": "Timestamp at which insight upload folder was created",
|
|
15544
15750
|
"examples": [
|
|
15545
|
-
"2025-05-
|
|
15751
|
+
"2025-05-13T00:00:00Z"
|
|
15546
15752
|
]
|
|
15547
15753
|
},
|
|
15548
15754
|
"updated_at": {
|
|
@@ -15551,7 +15757,7 @@
|
|
|
15551
15757
|
"title": "Updated At",
|
|
15552
15758
|
"description": "Timestamp at which insight upload folder was last updated",
|
|
15553
15759
|
"examples": [
|
|
15554
|
-
"2025-05-
|
|
15760
|
+
"2025-05-14T00:00:00Z"
|
|
15555
15761
|
]
|
|
15556
15762
|
},
|
|
15557
15763
|
"last_updated_by": {
|
|
@@ -15572,6 +15778,36 @@
|
|
|
15572
15778
|
"title": "InsightsFolder",
|
|
15573
15779
|
"description": "Response model for an insight upload folder."
|
|
15574
15780
|
},
|
|
15781
|
+
"InsightsFolderFileMove": {
|
|
15782
|
+
"properties": {
|
|
15783
|
+
"destination_folder_id": {
|
|
15784
|
+
"type": "integer",
|
|
15785
|
+
"title": "Destination Folder Id",
|
|
15786
|
+
"description": "System-assign folder ID",
|
|
15787
|
+
"examples": [
|
|
15788
|
+
182764
|
|
15789
|
+
]
|
|
15790
|
+
},
|
|
15791
|
+
"file_id_list": {
|
|
15792
|
+
"items": {
|
|
15793
|
+
"type": "integer"
|
|
15794
|
+
},
|
|
15795
|
+
"type": "array",
|
|
15796
|
+
"title": "File Id List",
|
|
15797
|
+
"description": "List of system-assigned IDs for the files to be moved",
|
|
15798
|
+
"examples": [
|
|
15799
|
+
"[12334,23445,34556]"
|
|
15800
|
+
]
|
|
15801
|
+
}
|
|
15802
|
+
},
|
|
15803
|
+
"type": "object",
|
|
15804
|
+
"required": [
|
|
15805
|
+
"destination_folder_id",
|
|
15806
|
+
"file_id_list"
|
|
15807
|
+
],
|
|
15808
|
+
"title": "InsightsFolderFileMove",
|
|
15809
|
+
"description": "Request model to move files between insight upload folders."
|
|
15810
|
+
},
|
|
15575
15811
|
"InsightsFolderInput": {
|
|
15576
15812
|
"properties": {
|
|
15577
15813
|
"name": {
|
|
@@ -15756,7 +15992,7 @@
|
|
|
15756
15992
|
"title": "Created At",
|
|
15757
15993
|
"description": "Timestamp at which insight tool result was created",
|
|
15758
15994
|
"examples": [
|
|
15759
|
-
"2025-05-
|
|
15995
|
+
"2025-05-13T00:00:00Z"
|
|
15760
15996
|
]
|
|
15761
15997
|
},
|
|
15762
15998
|
"updated_at": {
|
|
@@ -15765,7 +16001,7 @@
|
|
|
15765
16001
|
"title": "Updated At",
|
|
15766
16002
|
"description": "Timestamp at which insight tool result was last updated",
|
|
15767
16003
|
"examples": [
|
|
15768
|
-
"2025-05-
|
|
16004
|
+
"2025-05-14T00:00:00Z"
|
|
15769
16005
|
]
|
|
15770
16006
|
}
|
|
15771
16007
|
},
|
|
@@ -15900,7 +16136,7 @@
|
|
|
15900
16136
|
"title": "Start Time",
|
|
15901
16137
|
"description": "Start time of the uploaded file",
|
|
15902
16138
|
"examples": [
|
|
15903
|
-
"2025-05-
|
|
16139
|
+
"2025-05-13T00:00:00Z"
|
|
15904
16140
|
]
|
|
15905
16141
|
},
|
|
15906
16142
|
"end_time": {
|
|
@@ -15916,7 +16152,7 @@
|
|
|
15916
16152
|
"title": "End Time",
|
|
15917
16153
|
"description": "End time of the uploaded file",
|
|
15918
16154
|
"examples": [
|
|
15919
|
-
"2025-05-
|
|
16155
|
+
"2025-05-14T00:00:00Z"
|
|
15920
16156
|
]
|
|
15921
16157
|
},
|
|
15922
16158
|
"error_message": {
|
|
@@ -15971,7 +16207,7 @@
|
|
|
15971
16207
|
"title": "Created At",
|
|
15972
16208
|
"description": "Timestamp at which insight upload file was created",
|
|
15973
16209
|
"examples": [
|
|
15974
|
-
"2025-05-
|
|
16210
|
+
"2025-05-13T00:00:00Z"
|
|
15975
16211
|
]
|
|
15976
16212
|
}
|
|
15977
16213
|
},
|
|
@@ -18392,7 +18628,7 @@
|
|
|
18392
18628
|
"title": "Created At",
|
|
18393
18629
|
"description": "Timestamp of campaign creation",
|
|
18394
18630
|
"examples": [
|
|
18395
|
-
"2025-05-
|
|
18631
|
+
"2025-05-14T00:00:00Z"
|
|
18396
18632
|
]
|
|
18397
18633
|
},
|
|
18398
18634
|
"updated_at": {
|
|
@@ -18401,7 +18637,7 @@
|
|
|
18401
18637
|
"title": "Updated At",
|
|
18402
18638
|
"description": "Timestamp of campaign update",
|
|
18403
18639
|
"examples": [
|
|
18404
|
-
"2025-05-
|
|
18640
|
+
"2025-05-14T00:00:00Z"
|
|
18405
18641
|
]
|
|
18406
18642
|
},
|
|
18407
18643
|
"last_updated_by": {
|
|
@@ -21737,7 +21973,7 @@
|
|
|
21737
21973
|
},
|
|
21738
21974
|
{
|
|
21739
21975
|
"name": "channels.twilio.numbers",
|
|
21740
|
-
"description": "Operations related to setting up phone numbers in Twilio for use in
|
|
21976
|
+
"description": "Operations related to setting up phone numbers in Twilio for use in channels."
|
|
21741
21977
|
},
|
|
21742
21978
|
{
|
|
21743
21979
|
"name": "channels.targets",
|
|
@@ -21785,7 +22021,7 @@
|
|
|
21785
22021
|
},
|
|
21786
22022
|
{
|
|
21787
22023
|
"name": "insights.workflows",
|
|
21788
|
-
"description": "Operations related to insights workflows. An workflow is series of tool invocations that processes conversation data to extract information and generate
|
|
22024
|
+
"description": "Operations related to insights workflows. An workflow is series of tool invocations that processes conversation data to extract information and generate reports."
|
|
21789
22025
|
},
|
|
21790
22026
|
{
|
|
21791
22027
|
"name": "language_groups",
|
|
@@ -21877,6 +22113,10 @@
|
|
|
21877
22113
|
"operationId": ".*_list_files$",
|
|
21878
22114
|
"methodNameOverride": "list_files"
|
|
21879
22115
|
},
|
|
22116
|
+
{
|
|
22117
|
+
"operationId": ".*_move_files$",
|
|
22118
|
+
"methodNameOverride": "move_files"
|
|
22119
|
+
},
|
|
21880
22120
|
{
|
|
21881
22121
|
"operationId": ".*_upload_file$",
|
|
21882
22122
|
"methodNameOverride": "upload_file"
|
package/package.json
CHANGED
package/sdk/campaigns.d.ts
CHANGED
|
@@ -18,5 +18,9 @@ export declare class Campaigns extends ClientSDK {
|
|
|
18
18
|
* Update Outbound Communication Campaign
|
|
19
19
|
*/
|
|
20
20
|
update(request: operations.OutboundCampaignUpdateRequest, options?: RequestOptions): Promise<components.OutboundCampaign>;
|
|
21
|
+
/**
|
|
22
|
+
* Delete Outbound Communication Campaign
|
|
23
|
+
*/
|
|
24
|
+
delete(request: operations.OutboundCampaignDeleteRequest, options?: RequestOptions): Promise<any>;
|
|
21
25
|
}
|
|
22
26
|
//# sourceMappingURL=campaigns.d.ts.map
|
package/sdk/campaigns.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"campaigns.d.ts","sourceRoot":"","sources":["../src/sdk/campaigns.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"campaigns.d.ts","sourceRoot":"","sources":["../src/sdk/campaigns.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,SAAU,SAAQ,SAAS;IACtC;;OAEG;IACG,IAAI,CACR,OAAO,EAAE,UAAU,CAAC,2BAA2B,EAC/C,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,4BAA4B,CAAC;IAQnD;;OAEG;IACG,MAAM,CACV,OAAO,EAAE,UAAU,CAAC,qBAAqB,EACzC,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,gBAAgB,CAAC;IAQvC;;OAEG;IACG,OAAO,CACX,OAAO,EAAE,UAAU,CAAC,8BAA8B,EAClD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,gBAAgB,CAAC;IAQvC;;OAEG;IACG,MAAM,CACV,OAAO,EAAE,UAAU,CAAC,6BAA6B,EACjD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,gBAAgB,CAAC;IAQvC;;OAEG;IACG,MAAM,CACV,OAAO,EAAE,UAAU,CAAC,6BAA6B,EACjD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,GAAG,CAAC;CAOhB"}
|
package/sdk/campaigns.js
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.Campaigns = void 0;
|
|
7
7
|
const outboundCampaignsCreate_js_1 = require("../funcs/outboundCampaignsCreate.js");
|
|
8
|
+
const outboundCampaignsDelete_js_1 = require("../funcs/outboundCampaignsDelete.js");
|
|
8
9
|
const outboundCampaignsGetById_js_1 = require("../funcs/outboundCampaignsGetById.js");
|
|
9
10
|
const outboundCampaignsList_js_1 = require("../funcs/outboundCampaignsList.js");
|
|
10
11
|
const outboundCampaignsUpdate_js_1 = require("../funcs/outboundCampaignsUpdate.js");
|
|
@@ -35,6 +36,12 @@ class Campaigns extends sdks_js_1.ClientSDK {
|
|
|
35
36
|
async update(request, options) {
|
|
36
37
|
return (0, fp_js_1.unwrapAsync)((0, outboundCampaignsUpdate_js_1.outboundCampaignsUpdate)(this, request, options));
|
|
37
38
|
}
|
|
39
|
+
/**
|
|
40
|
+
* Delete Outbound Communication Campaign
|
|
41
|
+
*/
|
|
42
|
+
async delete(request, options) {
|
|
43
|
+
return (0, fp_js_1.unwrapAsync)((0, outboundCampaignsDelete_js_1.outboundCampaignsDelete)(this, request, options));
|
|
44
|
+
}
|
|
38
45
|
}
|
|
39
46
|
exports.Campaigns = Campaigns;
|
|
40
47
|
//# sourceMappingURL=campaigns.js.map
|
package/sdk/campaigns.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"campaigns.js","sourceRoot":"","sources":["../src/sdk/campaigns.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,oFAA8E;AAC9E,sFAAgF;AAChF,gFAA0E;AAC1E,oFAA8E;AAC9E,4CAA2D;AAG3D,0CAA6C;AAE7C,MAAa,SAAU,SAAQ,mBAAS;IACtC;;OAEG;IACH,KAAK,CAAC,IAAI,CACR,OAA+C,EAC/C,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,gDAAqB,EACtC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,MAAM,CACV,OAAyC,EACzC,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,oDAAuB,EACxC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,OAAO,CACX,OAAkD,EAClD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,MAAM,CACV,OAAiD,EACjD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,oDAAuB,EACxC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;
|
|
1
|
+
{"version":3,"file":"campaigns.js","sourceRoot":"","sources":["../src/sdk/campaigns.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,oFAA8E;AAC9E,oFAA8E;AAC9E,sFAAgF;AAChF,gFAA0E;AAC1E,oFAA8E;AAC9E,4CAA2D;AAG3D,0CAA6C;AAE7C,MAAa,SAAU,SAAQ,mBAAS;IACtC;;OAEG;IACH,KAAK,CAAC,IAAI,CACR,OAA+C,EAC/C,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,gDAAqB,EACtC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,MAAM,CACV,OAAyC,EACzC,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,oDAAuB,EACxC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,OAAO,CACX,OAAkD,EAClD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,MAAM,CACV,OAAiD,EACjD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,oDAAuB,EACxC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;OAEG;IACH,KAAK,CAAC,MAAM,CACV,OAAiD,EACjD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,oDAAuB,EACxC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;AAtED,8BAsEC"}
|
package/sdk/folders.d.ts
CHANGED
|
@@ -14,6 +14,10 @@ export declare class Folders extends ClientSDK {
|
|
|
14
14
|
* Get Insights Folder Details
|
|
15
15
|
*/
|
|
16
16
|
getById(request: operations.InsightsFolderGetByIdRequest, options?: RequestOptions): Promise<components.FolderDetails>;
|
|
17
|
+
/**
|
|
18
|
+
* Delete Insights Folder
|
|
19
|
+
*/
|
|
20
|
+
delete(request: operations.InsightsFolderDeleteRequest, options?: RequestOptions): Promise<boolean>;
|
|
17
21
|
/**
|
|
18
22
|
* Update Insights Folder
|
|
19
23
|
*/
|
|
@@ -26,5 +30,9 @@ export declare class Folders extends ClientSDK {
|
|
|
26
30
|
* Fetch Insights Upload Files
|
|
27
31
|
*/
|
|
28
32
|
listFiles(request: operations.InsightsUploadListFilesRequest, options?: RequestOptions): Promise<components.ListResponseInsightsUploadFile>;
|
|
33
|
+
/**
|
|
34
|
+
* Move Insights Upload Files
|
|
35
|
+
*/
|
|
36
|
+
moveFiles(request: operations.InsightsUploadMoveFilesRequest, options?: RequestOptions): Promise<Array<components.InsightsUploadFile>>;
|
|
29
37
|
}
|
|
30
38
|
//# sourceMappingURL=folders.d.ts.map
|
package/sdk/folders.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"folders.d.ts","sourceRoot":"","sources":["../src/sdk/folders.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"folders.d.ts","sourceRoot":"","sources":["../src/sdk/folders.ts"],"names":[],"mappings":"AAYA,OAAO,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAG5D,qBAAa,OAAQ,SAAQ,SAAS;IACpC;;OAEG;IACG,IAAI,CACR,OAAO,EAAE,UAAU,CAAC,yBAAyB,EAC7C,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,0BAA0B,CAAC;IAQjD;;OAEG;IACG,MAAM,CACV,OAAO,EAAE,UAAU,CAAC,mBAAmB,EACvC,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,cAAc,CAAC;IAQrC;;OAEG;IACG,OAAO,CACX,OAAO,EAAE,UAAU,CAAC,4BAA4B,EAChD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,aAAa,CAAC;IAQpC;;OAEG;IACG,MAAM,CACV,OAAO,EAAE,UAAU,CAAC,2BAA2B,EAC/C,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,OAAO,CAAC;IAQnB;;OAEG;IACG,MAAM,CACV,OAAO,EAAE,UAAU,CAAC,2BAA2B,EAC/C,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,cAAc,CAAC;IAQrC;;OAEG;IACG,UAAU,CACd,OAAO,EAAE,UAAU,CAAC,+BAA+B,EACnD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,kBAAkB,CAAC;IAQzC;;OAEG;IACG,SAAS,CACb,OAAO,EAAE,UAAU,CAAC,8BAA8B,EAClD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,8BAA8B,CAAC;IAQrD;;OAEG;IACG,SAAS,CACb,OAAO,EAAE,UAAU,CAAC,8BAA8B,EAClD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,KAAK,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC;CAOjD"}
|