syllable-sdk 1.0.7-rc.3 → 1.0.7-rc.5

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.
Files changed (64) hide show
  1. package/README.md +2 -0
  2. package/bin/mcp-server.js +932 -774
  3. package/bin/mcp-server.js.map +14 -10
  4. package/docs/sdks/batches/README.md +4 -4
  5. package/docs/sdks/directory/README.md +85 -0
  6. package/docs/sdks/workflows/README.md +8 -8
  7. package/examples/package-lock.json +1 -1
  8. package/funcs/directoryDirectoryMemberTestExtension.d.ts +19 -0
  9. package/funcs/directoryDirectoryMemberTestExtension.d.ts.map +1 -0
  10. package/funcs/directoryDirectoryMemberTestExtension.js +129 -0
  11. package/funcs/directoryDirectoryMemberTestExtension.js.map +1 -0
  12. package/jsr.json +1 -1
  13. package/lib/config.d.ts +3 -3
  14. package/lib/config.js +3 -3
  15. package/mcp-server/mcp-server.js +1 -1
  16. package/mcp-server/server.d.ts.map +1 -1
  17. package/mcp-server/server.js +3 -1
  18. package/mcp-server/server.js.map +1 -1
  19. package/mcp-server/tools/directoryDirectoryMemberTestExtension.d.ts +8 -0
  20. package/mcp-server/tools/directoryDirectoryMemberTestExtension.d.ts.map +1 -0
  21. package/mcp-server/tools/directoryDirectoryMemberTestExtension.js +64 -0
  22. package/mcp-server/tools/directoryDirectoryMemberTestExtension.js.map +1 -0
  23. package/models/components/directorymember.d.ts +13 -4
  24. package/models/components/directorymember.d.ts.map +1 -1
  25. package/models/components/directorymember.js +4 -4
  26. package/models/components/directorymember.js.map +1 -1
  27. package/models/components/directorymembercreate.d.ts +3 -4
  28. package/models/components/directorymembercreate.d.ts.map +1 -1
  29. package/models/components/directorymembercreate.js +0 -8
  30. package/models/components/directorymembercreate.js.map +1 -1
  31. package/models/components/directorymembertestresponse.d.ts +32 -0
  32. package/models/components/directorymembertestresponse.d.ts.map +1 -0
  33. package/models/components/directorymembertestresponse.js +69 -0
  34. package/models/components/directorymembertestresponse.js.map +1 -0
  35. package/models/components/index.d.ts +1 -0
  36. package/models/components/index.d.ts.map +1 -1
  37. package/models/components/index.js +1 -0
  38. package/models/components/index.js.map +1 -1
  39. package/models/operations/directorymembertestextension.d.ts +40 -0
  40. package/models/operations/directorymembertestextension.d.ts.map +1 -0
  41. package/models/operations/directorymembertestextension.js +85 -0
  42. package/models/operations/directorymembertestextension.js.map +1 -0
  43. package/models/operations/index.d.ts +1 -0
  44. package/models/operations/index.d.ts.map +1 -1
  45. package/models/operations/index.js +1 -0
  46. package/models/operations/index.js.map +1 -1
  47. package/openapi.json +160 -77
  48. package/package.json +1 -1
  49. package/sdk/directory.d.ts +7 -0
  50. package/sdk/directory.d.ts.map +1 -1
  51. package/sdk/directory.js +10 -0
  52. package/sdk/directory.js.map +1 -1
  53. package/src/funcs/directoryDirectoryMemberTestExtension.ts +187 -0
  54. package/src/lib/config.ts +3 -3
  55. package/src/mcp-server/mcp-server.ts +1 -1
  56. package/src/mcp-server/server.ts +3 -1
  57. package/src/mcp-server/tools/directoryDirectoryMemberTestExtension.ts +39 -0
  58. package/src/models/components/directorymember.ts +17 -10
  59. package/src/models/components/directorymembercreate.ts +3 -14
  60. package/src/models/components/directorymembertestresponse.ts +71 -0
  61. package/src/models/components/index.ts +1 -0
  62. package/src/models/operations/directorymembertestextension.ts +97 -0
  63. package/src/models/operations/index.ts +1 -0
  64. package/src/sdk/directory.ts +18 -0
package/openapi.json CHANGED
@@ -9010,6 +9010,84 @@
9010
9010
  }
9011
9011
  }
9012
9012
  },
9013
+ "/api/v1/directory_members/{member_id}/test": {
9014
+ "get": {
9015
+ "tags": [
9016
+ "directory"
9017
+ ],
9018
+ "summary": "Test Directory Member Extension",
9019
+ "description": "Test directory member extension at a specific timestamp and language.",
9020
+ "operationId": "directory_member_test_extension",
9021
+ "security": [
9022
+ {
9023
+ "APIKeyHeader": []
9024
+ }
9025
+ ],
9026
+ "parameters": [
9027
+ {
9028
+ "name": "member_id",
9029
+ "in": "path",
9030
+ "required": true,
9031
+ "schema": {
9032
+ "type": "integer",
9033
+ "title": "Member Id"
9034
+ }
9035
+ },
9036
+ {
9037
+ "name": "timestamp",
9038
+ "in": "query",
9039
+ "required": true,
9040
+ "schema": {
9041
+ "type": "string",
9042
+ "format": "date-time",
9043
+ "description": "Timestamp for test",
9044
+ "title": "Timestamp"
9045
+ },
9046
+ "description": "Timestamp for test"
9047
+ },
9048
+ {
9049
+ "name": "language_code",
9050
+ "in": "query",
9051
+ "required": false,
9052
+ "schema": {
9053
+ "anyOf": [
9054
+ {
9055
+ "$ref": "#/components/schemas/LanguageCode"
9056
+ },
9057
+ {
9058
+ "type": "null"
9059
+ }
9060
+ ],
9061
+ "description": "Optional language code for test",
9062
+ "title": "Language Code"
9063
+ },
9064
+ "description": "Optional language code for test"
9065
+ }
9066
+ ],
9067
+ "responses": {
9068
+ "200": {
9069
+ "description": "Successful Response",
9070
+ "content": {
9071
+ "application/json": {
9072
+ "schema": {
9073
+ "$ref": "#/components/schemas/DirectoryMemberTestResponse"
9074
+ }
9075
+ }
9076
+ }
9077
+ },
9078
+ "422": {
9079
+ "description": "Validation Error",
9080
+ "content": {
9081
+ "application/json": {
9082
+ "schema": {
9083
+ "$ref": "#/components/schemas/HTTPValidationError"
9084
+ }
9085
+ }
9086
+ }
9087
+ }
9088
+ }
9089
+ }
9090
+ },
9013
9091
  "/api/v1/directory_members/upload/": {
9014
9092
  "put": {
9015
9093
  "tags": [
@@ -13707,7 +13785,7 @@
13707
13785
  "title": "Batch Id",
13708
13786
  "description": "Unique ID for conversation batch",
13709
13787
  "examples": [
13710
- "20251027.9"
13788
+ "20251028.9"
13711
13789
  ]
13712
13790
  },
13713
13791
  "campaign_id": {
@@ -13731,7 +13809,7 @@
13731
13809
  "title": "Expires On",
13732
13810
  "description": "Timestamp of batch expiration",
13733
13811
  "examples": [
13734
- "2025-10-28T00:00:00Z"
13812
+ "2025-10-29T00:00:00Z"
13735
13813
  ]
13736
13814
  },
13737
13815
  "paused": {
@@ -13784,7 +13862,7 @@
13784
13862
  "title": "Created At",
13785
13863
  "description": "Timestamp of batch creation",
13786
13864
  "examples": [
13787
- "2025-10-27T00:00:00Z"
13865
+ "2025-10-28T00:00:00Z"
13788
13866
  ]
13789
13867
  },
13790
13868
  "deleted_at": {
@@ -13800,7 +13878,7 @@
13800
13878
  "title": "Deleted At",
13801
13879
  "description": "Timestamp of batch deletion",
13802
13880
  "examples": [
13803
- "2025-10-27T00:00:00Z"
13881
+ "2025-10-28T00:00:00Z"
13804
13882
  ]
13805
13883
  },
13806
13884
  "deleted_reason": {
@@ -13831,7 +13909,7 @@
13831
13909
  "title": "Last Updated At",
13832
13910
  "description": "Timestamp of last change to batch",
13833
13911
  "examples": [
13834
- "2025-10-27T00:00:00Z"
13912
+ "2025-10-28T00:00:00Z"
13835
13913
  ]
13836
13914
  },
13837
13915
  "last_updated_by": {
@@ -14587,7 +14665,7 @@
14587
14665
  "title": "Batch Id",
14588
14666
  "description": "Unique ID for conversation batch",
14589
14667
  "examples": [
14590
- "20251027.9"
14668
+ "20251028.9"
14591
14669
  ]
14592
14670
  },
14593
14671
  "campaign_id": {
@@ -14611,7 +14689,7 @@
14611
14689
  "title": "Expires On",
14612
14690
  "description": "Timestamp of batch expiration",
14613
14691
  "examples": [
14614
- "2025-10-28T00:00:00Z"
14692
+ "2025-10-29T00:00:00Z"
14615
14693
  ]
14616
14694
  },
14617
14695
  "paused": {
@@ -14664,7 +14742,7 @@
14664
14742
  "title": "Created At",
14665
14743
  "description": "Timestamp of batch creation",
14666
14744
  "examples": [
14667
- "2025-10-27T00:00:00Z"
14745
+ "2025-10-28T00:00:00Z"
14668
14746
  ]
14669
14747
  },
14670
14748
  "deleted_at": {
@@ -14680,7 +14758,7 @@
14680
14758
  "title": "Deleted At",
14681
14759
  "description": "Timestamp of batch deletion",
14682
14760
  "examples": [
14683
- "2025-10-27T00:00:00Z"
14761
+ "2025-10-28T00:00:00Z"
14684
14762
  ]
14685
14763
  },
14686
14764
  "deleted_reason": {
@@ -14711,7 +14789,7 @@
14711
14789
  "title": "Last Updated At",
14712
14790
  "description": "Timestamp of last change to batch",
14713
14791
  "examples": [
14714
- "2025-10-27T00:00:00Z"
14792
+ "2025-10-28T00:00:00Z"
14715
14793
  ]
14716
14794
  },
14717
14795
  "last_updated_by": {
@@ -14754,7 +14832,7 @@
14754
14832
  "title": "Batch Id",
14755
14833
  "description": "Unique ID for conversation batch",
14756
14834
  "examples": [
14757
- "20251027.9"
14835
+ "20251028.9"
14758
14836
  ]
14759
14837
  },
14760
14838
  "campaign_id": {
@@ -14778,7 +14856,7 @@
14778
14856
  "title": "Expires On",
14779
14857
  "description": "Timestamp of batch expiration",
14780
14858
  "examples": [
14781
- "2025-10-28T00:00:00Z"
14859
+ "2025-10-29T00:00:00Z"
14782
14860
  ]
14783
14861
  },
14784
14862
  "paused": {
@@ -14927,7 +15005,7 @@
14927
15005
  "title": "Created At",
14928
15006
  "description": "Timestamp of request creation",
14929
15007
  "examples": [
14930
- "2025-10-26T00:00:00Z"
15008
+ "2025-10-27T00:00:00Z"
14931
15009
  ]
14932
15010
  },
14933
15011
  "sent_at": {
@@ -14943,7 +15021,7 @@
14943
15021
  "title": "Sent At",
14944
15022
  "description": "Timestamp at which request was sent",
14945
15023
  "examples": [
14946
- "2025-10-27T00:00:00Z"
15024
+ "2025-10-28T00:00:00Z"
14947
15025
  ]
14948
15026
  },
14949
15027
  "attempt_count": {
@@ -16516,20 +16594,37 @@
16516
16594
  }
16517
16595
  ],
16518
16596
  "title": "Contact Tags",
16519
- "description": ""
16597
+ "description": "Tags for the directory member",
16598
+ "examples": [
16599
+ {
16600
+ "tag1": "value1",
16601
+ "tag2": "value2"
16602
+ }
16603
+ ]
16520
16604
  },
16521
- "updated_at": {
16605
+ "id": {
16522
16606
  "anyOf": [
16523
16607
  {
16524
- "type": "string",
16525
- "format": "date-time"
16608
+ "type": "integer"
16526
16609
  },
16527
16610
  {
16528
16611
  "type": "null"
16529
16612
  }
16530
16613
  ],
16614
+ "title": "Id",
16615
+ "description": "Internal ID of the directory member",
16616
+ "examples": [
16617
+ 1
16618
+ ]
16619
+ },
16620
+ "updated_at": {
16621
+ "type": "string",
16622
+ "format": "date-time",
16531
16623
  "title": "Updated At",
16532
- "description": ""
16624
+ "description": "Timestamp of most recent update",
16625
+ "examples": [
16626
+ "2024-01-01T00:00:00Z"
16627
+ ]
16533
16628
  },
16534
16629
  "last_updated_by": {
16535
16630
  "anyOf": [
@@ -16541,28 +16636,17 @@
16541
16636
  }
16542
16637
  ],
16543
16638
  "title": "Last Updated By",
16544
- "description": ""
16545
- },
16546
- "id": {
16547
- "anyOf": [
16548
- {
16549
- "type": "integer"
16550
- },
16551
- {
16552
- "type": "null"
16553
- }
16554
- ],
16555
- "title": "Id",
16556
- "description": "Internal ID of the directory member",
16639
+ "description": "Email of the user who last updated the directory member",
16557
16640
  "examples": [
16558
- 1
16641
+ "user@email.com"
16559
16642
  ]
16560
16643
  }
16561
16644
  },
16562
16645
  "type": "object",
16563
16646
  "required": [
16564
16647
  "name",
16565
- "type"
16648
+ "type",
16649
+ "updated_at"
16566
16650
  ],
16567
16651
  "title": "DirectoryMember",
16568
16652
  "description": "Model for a directory member (i.e. a contact)."
@@ -16627,32 +16711,13 @@
16627
16711
  }
16628
16712
  ],
16629
16713
  "title": "Contact Tags",
16630
- "description": ""
16631
- },
16632
- "updated_at": {
16633
- "anyOf": [
16634
- {
16635
- "type": "string",
16636
- "format": "date-time"
16637
- },
16714
+ "description": "Tags for the directory member",
16715
+ "examples": [
16638
16716
  {
16639
- "type": "null"
16717
+ "tag1": "value1",
16718
+ "tag2": "value2"
16640
16719
  }
16641
- ],
16642
- "title": "Updated At",
16643
- "description": ""
16644
- },
16645
- "last_updated_by": {
16646
- "anyOf": [
16647
- {
16648
- "type": "string"
16649
- },
16650
- {
16651
- "type": "null"
16652
- }
16653
- ],
16654
- "title": "Last Updated By",
16655
- "description": ""
16720
+ ]
16656
16721
  }
16657
16722
  },
16658
16723
  "type": "object",
@@ -16676,6 +16741,24 @@
16676
16741
  ],
16677
16742
  "title": "DirectoryMemberProperties"
16678
16743
  },
16744
+ "DirectoryMemberTestResponse": {
16745
+ "properties": {
16746
+ "extension": {
16747
+ "anyOf": [
16748
+ {
16749
+ "type": "string"
16750
+ },
16751
+ {
16752
+ "type": "null"
16753
+ }
16754
+ ],
16755
+ "title": "Extension",
16756
+ "description": "Extension to which the user will be transferred if they call at the provided timestamp in the given language"
16757
+ }
16758
+ },
16759
+ "type": "object",
16760
+ "title": "DirectoryMemberTestResponse"
16761
+ },
16679
16762
  "Event": {
16680
16763
  "properties": {
16681
16764
  "timestamp": {
@@ -16885,7 +16968,7 @@
16885
16968
  "title": "Created At",
16886
16969
  "description": "Timestamp at which insight upload folder was created",
16887
16970
  "examples": [
16888
- "2025-10-26T00:00:00Z"
16971
+ "2025-10-27T00:00:00Z"
16889
16972
  ]
16890
16973
  },
16891
16974
  "updated_at": {
@@ -16894,7 +16977,7 @@
16894
16977
  "title": "Updated At",
16895
16978
  "description": "Timestamp at which insight upload folder was last updated",
16896
16979
  "examples": [
16897
- "2025-10-27T00:00:00Z"
16980
+ "2025-10-28T00:00:00Z"
16898
16981
  ]
16899
16982
  },
16900
16983
  "last_updated_by": {
@@ -17580,7 +17663,7 @@
17580
17663
  "title": "Created At",
17581
17664
  "description": "Timestamp of at which insight tool configuration was created",
17582
17665
  "examples": [
17583
- "2025-10-26T00:00:00Z"
17666
+ "2025-10-27T00:00:00Z"
17584
17667
  ]
17585
17668
  },
17586
17669
  "updated_at": {
@@ -17589,7 +17672,7 @@
17589
17672
  "title": "Updated At",
17590
17673
  "description": "Timestamp at which insight tool configuration was last updated",
17591
17674
  "examples": [
17592
- "2025-10-27T00:00:00Z"
17675
+ "2025-10-28T00:00:00Z"
17593
17676
  ]
17594
17677
  },
17595
17678
  "last_updated_by": {
@@ -17970,7 +18053,7 @@
17970
18053
  "title": "Start Datetime",
17971
18054
  "description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
17972
18055
  "examples": [
17973
- "2025-10-26T00:00:00Z"
18056
+ "2025-10-27T00:00:00Z"
17974
18057
  ]
17975
18058
  },
17976
18059
  "end_datetime": {
@@ -17986,7 +18069,7 @@
17986
18069
  "title": "End Datetime",
17987
18070
  "description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
17988
18071
  "examples": [
17989
- "2025-10-27T00:00:00Z"
18072
+ "2025-10-28T00:00:00Z"
17990
18073
  ]
17991
18074
  }
17992
18075
  },
@@ -18061,7 +18144,7 @@
18061
18144
  "title": "Start Datetime",
18062
18145
  "description": "Target session timestamp the workflow (backfill) should start. An empty value indicates start on activation - live sessions only",
18063
18146
  "examples": [
18064
- "2025-10-26T00:00:00Z"
18147
+ "2025-10-27T00:00:00Z"
18065
18148
  ]
18066
18149
  },
18067
18150
  "end_datetime": {
@@ -18077,7 +18160,7 @@
18077
18160
  "title": "End Datetime",
18078
18161
  "description": "Target session timestamp the workflow (backfill) should end. An empty value indicates no end, i.e., include live sessions until deactivation",
18079
18162
  "examples": [
18080
- "2025-10-27T00:00:00Z"
18163
+ "2025-10-28T00:00:00Z"
18081
18164
  ]
18082
18165
  },
18083
18166
  "id": {
@@ -18130,7 +18213,7 @@
18130
18213
  "title": "Created At",
18131
18214
  "description": "Timestamp at which the insight workflow was created",
18132
18215
  "examples": [
18133
- "2025-10-26T00:00:00Z"
18216
+ "2025-10-27T00:00:00Z"
18134
18217
  ]
18135
18218
  },
18136
18219
  "updated_at": {
@@ -18139,7 +18222,7 @@
18139
18222
  "title": "Updated At",
18140
18223
  "description": "Timestamp of most recent update to the insight workflow",
18141
18224
  "examples": [
18142
- "2025-10-27T00:00:00Z"
18225
+ "2025-10-28T00:00:00Z"
18143
18226
  ]
18144
18227
  },
18145
18228
  "last_updated_by": {
@@ -18235,7 +18318,7 @@
18235
18318
  "title": "Created At",
18236
18319
  "description": "Timestamp at which insight upload folder was created",
18237
18320
  "examples": [
18238
- "2025-10-26T00:00:00Z"
18321
+ "2025-10-27T00:00:00Z"
18239
18322
  ]
18240
18323
  },
18241
18324
  "updated_at": {
@@ -18244,7 +18327,7 @@
18244
18327
  "title": "Updated At",
18245
18328
  "description": "Timestamp at which insight upload folder was last updated",
18246
18329
  "examples": [
18247
- "2025-10-27T00:00:00Z"
18330
+ "2025-10-28T00:00:00Z"
18248
18331
  ]
18249
18332
  },
18250
18333
  "last_updated_by": {
@@ -18479,7 +18562,7 @@
18479
18562
  "title": "Created At",
18480
18563
  "description": "Timestamp at which insight tool result was created",
18481
18564
  "examples": [
18482
- "2025-10-26T00:00:00Z"
18565
+ "2025-10-27T00:00:00Z"
18483
18566
  ]
18484
18567
  },
18485
18568
  "updated_at": {
@@ -18488,7 +18571,7 @@
18488
18571
  "title": "Updated At",
18489
18572
  "description": "Timestamp at which insight tool result was last updated",
18490
18573
  "examples": [
18491
- "2025-10-27T00:00:00Z"
18574
+ "2025-10-28T00:00:00Z"
18492
18575
  ]
18493
18576
  },
18494
18577
  "upload_file_metadata": {
@@ -18633,7 +18716,7 @@
18633
18716
  "title": "Start Time",
18634
18717
  "description": "Start time of the uploaded file",
18635
18718
  "examples": [
18636
- "2025-10-26T00:00:00Z"
18719
+ "2025-10-27T00:00:00Z"
18637
18720
  ]
18638
18721
  },
18639
18722
  "end_time": {
@@ -18649,7 +18732,7 @@
18649
18732
  "title": "End Time",
18650
18733
  "description": "End time of the uploaded file",
18651
18734
  "examples": [
18652
- "2025-10-27T00:00:00Z"
18735
+ "2025-10-28T00:00:00Z"
18653
18736
  ]
18654
18737
  },
18655
18738
  "error_message": {
@@ -18704,7 +18787,7 @@
18704
18787
  "title": "Created At",
18705
18788
  "description": "Timestamp at which insight upload file was created",
18706
18789
  "examples": [
18707
- "2025-10-26T00:00:00Z"
18790
+ "2025-10-27T00:00:00Z"
18708
18791
  ]
18709
18792
  }
18710
18793
  },
@@ -21877,7 +21960,7 @@
21877
21960
  "title": "Created At",
21878
21961
  "description": "Timestamp of campaign creation",
21879
21962
  "examples": [
21880
- "2025-10-27T00:00:00Z"
21963
+ "2025-10-28T00:00:00Z"
21881
21964
  ]
21882
21965
  },
21883
21966
  "updated_at": {
@@ -21886,7 +21969,7 @@
21886
21969
  "title": "Updated At",
21887
21970
  "description": "Timestamp of campaign update",
21888
21971
  "examples": [
21889
- "2025-10-27T00:00:00Z"
21972
+ "2025-10-28T00:00:00Z"
21890
21973
  ]
21891
21974
  },
21892
21975
  "last_updated_by": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "syllable-sdk",
3
- "version": "1.0.7-rc.3",
3
+ "version": "1.0.7-rc.5",
4
4
  "author": "Syllable",
5
5
  "bin": {
6
6
  "mcp": "bin/mcp-server.js"
@@ -37,6 +37,13 @@ export declare class Directory extends ClientSDK {
37
37
  * Delete a DirectoryMember.
38
38
  */
39
39
  delete(request: operations.DirectoryMemberDeleteRequest, options?: RequestOptions): Promise<any>;
40
+ /**
41
+ * Test Directory Member Extension
42
+ *
43
+ * @remarks
44
+ * Test directory member extension at a specific timestamp and language.
45
+ */
46
+ directoryMemberTestExtension(request: operations.DirectoryMemberTestExtensionRequest, options?: RequestOptions): Promise<components.DirectoryMemberTestResponse>;
40
47
  /**
41
48
  * Bulk Load Directory Members
42
49
  *
@@ -1 +1 @@
1
- {"version":3,"file":"directory.d.ts","sourceRoot":"","sources":["../src/sdk/directory.ts"],"names":[],"mappings":"AAWA,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;;;;;OAKG;IACG,IAAI,CACR,OAAO,EAAE,UAAU,CAAC,0BAA0B,EAC9C,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,2BAA2B,CAAC;IAQlD;;;;;OAKG;IACG,MAAM,CACV,OAAO,EAAE,UAAU,CAAC,qBAAqB,EACzC,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,eAAe,CAAC;IAQtC;;;;;OAKG;IACG,OAAO,CACX,OAAO,EAAE,UAAU,CAAC,6BAA6B,EACjD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,eAAe,CAAC;IAQtC;;;;;OAKG;IACG,MAAM,CACV,OAAO,EAAE,UAAU,CAAC,4BAA4B,EAChD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,eAAe,CAAC;IAQtC;;;;;OAKG;IACG,MAAM,CACV,OAAO,EAAE,UAAU,CAAC,4BAA4B,EAChD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,GAAG,CAAC;IAQf;;;;;OAKG;IACG,uBAAuB,CAC3B,OAAO,EAAE,UAAU,CAAC,2BAA2B,EAC/C,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,GAAG,CAAC;IAQf;;;;;OAKG;IACG,uBAAuB,CAC3B,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,GAAG,CAAC;CAMhB"}
1
+ {"version":3,"file":"directory.d.ts","sourceRoot":"","sources":["../src/sdk/directory.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,SAAU,SAAQ,SAAS;IACtC;;;;;OAKG;IACG,IAAI,CACR,OAAO,EAAE,UAAU,CAAC,0BAA0B,EAC9C,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,2BAA2B,CAAC;IAQlD;;;;;OAKG;IACG,MAAM,CACV,OAAO,EAAE,UAAU,CAAC,qBAAqB,EACzC,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,eAAe,CAAC;IAQtC;;;;;OAKG;IACG,OAAO,CACX,OAAO,EAAE,UAAU,CAAC,6BAA6B,EACjD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,eAAe,CAAC;IAQtC;;;;;OAKG;IACG,MAAM,CACV,OAAO,EAAE,UAAU,CAAC,4BAA4B,EAChD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,eAAe,CAAC;IAQtC;;;;;OAKG;IACG,MAAM,CACV,OAAO,EAAE,UAAU,CAAC,4BAA4B,EAChD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,GAAG,CAAC;IAQf;;;;;OAKG;IACG,4BAA4B,CAChC,OAAO,EAAE,UAAU,CAAC,mCAAmC,EACvD,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,UAAU,CAAC,2BAA2B,CAAC;IAQlD;;;;;OAKG;IACG,uBAAuB,CAC3B,OAAO,EAAE,UAAU,CAAC,2BAA2B,EAC/C,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,GAAG,CAAC;IAQf;;;;;OAKG;IACG,uBAAuB,CAC3B,OAAO,CAAC,EAAE,cAAc,GACvB,OAAO,CAAC,GAAG,CAAC;CAMhB"}
package/sdk/directory.js CHANGED
@@ -8,6 +8,7 @@ const directoryCreate_js_1 = require("../funcs/directoryCreate.js");
8
8
  const directoryDelete_js_1 = require("../funcs/directoryDelete.js");
9
9
  const directoryDirectoryMemberBulkLoad_js_1 = require("../funcs/directoryDirectoryMemberBulkLoad.js");
10
10
  const directoryDirectoryMemberDownload_js_1 = require("../funcs/directoryDirectoryMemberDownload.js");
11
+ const directoryDirectoryMemberTestExtension_js_1 = require("../funcs/directoryDirectoryMemberTestExtension.js");
11
12
  const directoryGetById_js_1 = require("../funcs/directoryGetById.js");
12
13
  const directoryList_js_1 = require("../funcs/directoryList.js");
13
14
  const directoryUpdate_js_1 = require("../funcs/directoryUpdate.js");
@@ -59,6 +60,15 @@ class Directory extends sdks_js_1.ClientSDK {
59
60
  async delete(request, options) {
60
61
  return (0, fp_js_1.unwrapAsync)((0, directoryDelete_js_1.directoryDelete)(this, request, options));
61
62
  }
63
+ /**
64
+ * Test Directory Member Extension
65
+ *
66
+ * @remarks
67
+ * Test directory member extension at a specific timestamp and language.
68
+ */
69
+ async directoryMemberTestExtension(request, options) {
70
+ return (0, fp_js_1.unwrapAsync)((0, directoryDirectoryMemberTestExtension_js_1.directoryDirectoryMemberTestExtension)(this, request, options));
71
+ }
62
72
  /**
63
73
  * Bulk Load Directory Members
64
74
  *
@@ -1 +1 @@
1
- {"version":3,"file":"directory.js","sourceRoot":"","sources":["../src/sdk/directory.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,oEAA8D;AAC9D,oEAA8D;AAC9D,sGAAgG;AAChG,sGAAgG;AAChG,sEAAgE;AAChE,gEAA0D;AAC1D,oEAA8D;AAC9D,4CAA2D;AAG3D,0CAA6C;AAE7C,MAAa,SAAU,SAAQ,mBAAS;IACtC;;;;;OAKG;IACH,KAAK,CAAC,IAAI,CACR,OAA8C,EAC9C,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,gCAAa,EAC9B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,MAAM,CACV,OAAyC,EACzC,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,oCAAe,EAChC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,OAAO,CACX,OAAiD,EACjD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sCAAgB,EACjC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,MAAM,CACV,OAAgD,EAChD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,oCAAe,EAChC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,MAAM,CACV,OAAgD,EAChD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,oCAAe,EAChC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,uBAAuB,CAC3B,OAA+C,EAC/C,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sEAAgC,EACjD,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,uBAAuB,CAC3B,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sEAAgC,EACjD,IAAI,EACJ,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;AArHD,8BAqHC"}
1
+ {"version":3,"file":"directory.js","sourceRoot":"","sources":["../src/sdk/directory.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,oEAA8D;AAC9D,oEAA8D;AAC9D,sGAAgG;AAChG,sGAAgG;AAChG,gHAA0G;AAC1G,sEAAgE;AAChE,gEAA0D;AAC1D,oEAA8D;AAC9D,4CAA2D;AAG3D,0CAA6C;AAE7C,MAAa,SAAU,SAAQ,mBAAS;IACtC;;;;;OAKG;IACH,KAAK,CAAC,IAAI,CACR,OAA8C,EAC9C,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,gCAAa,EAC9B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,MAAM,CACV,OAAyC,EACzC,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,oCAAe,EAChC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,OAAO,CACX,OAAiD,EACjD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sCAAgB,EACjC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,MAAM,CACV,OAAgD,EAChD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,oCAAe,EAChC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,MAAM,CACV,OAAgD,EAChD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,oCAAe,EAChC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,4BAA4B,CAChC,OAAuD,EACvD,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,gFAAqC,EACtD,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,uBAAuB,CAC3B,OAA+C,EAC/C,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sEAAgC,EACjD,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,uBAAuB,CAC3B,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sEAAgC,EACjD,IAAI,EACJ,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;AAtID,8BAsIC"}