@connectedxm/admin 6.33.0 → 7.0.0
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/CLAUDE.md +1 -1
- package/dist/index.cjs +64 -575
- package/dist/index.d.cts +68 -385
- package/dist/index.d.ts +68 -385
- package/dist/index.js +57 -525
- package/openapi.json +252 -1363
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -757,16 +757,8 @@
|
|
|
757
757
|
"description": "A collection of messages around a specific topic for seamless, real-time collaboration"
|
|
758
758
|
},
|
|
759
759
|
{
|
|
760
|
-
"name": "Threads::
|
|
761
|
-
"description": "
|
|
762
|
-
},
|
|
763
|
-
{
|
|
764
|
-
"name": "Threads::Circles::Accounts",
|
|
765
|
-
"description": "Manage which accounts belong to thread circles, adding or removing members to control circle membership and access"
|
|
766
|
-
},
|
|
767
|
-
{
|
|
768
|
-
"name": "Threads::Members",
|
|
769
|
-
"description": "Manage thread membership, controlling who can participate in specific thread conversations"
|
|
760
|
+
"name": "Threads::Accounts",
|
|
761
|
+
"description": "Operations for threads::accounts"
|
|
770
762
|
},
|
|
771
763
|
{
|
|
772
764
|
"name": "Threads::Messages",
|
|
@@ -17537,6 +17529,66 @@
|
|
|
17537
17529
|
"tags": [
|
|
17538
17530
|
"Events::Activations"
|
|
17539
17531
|
]
|
|
17532
|
+
},
|
|
17533
|
+
"delete": {
|
|
17534
|
+
"operationId": "RemoveEventActivationSessions",
|
|
17535
|
+
"summary": "Remove Event Activation Sessions",
|
|
17536
|
+
"description": "Remove Event Activation Sessions endpoint",
|
|
17537
|
+
"parameters": [
|
|
17538
|
+
{
|
|
17539
|
+
"in": "path",
|
|
17540
|
+
"name": "eventId",
|
|
17541
|
+
"schema": {
|
|
17542
|
+
"type": "string"
|
|
17543
|
+
},
|
|
17544
|
+
"description": "The event identifier",
|
|
17545
|
+
"required": true
|
|
17546
|
+
},
|
|
17547
|
+
{
|
|
17548
|
+
"in": "path",
|
|
17549
|
+
"name": "activationId",
|
|
17550
|
+
"schema": {
|
|
17551
|
+
"type": "string"
|
|
17552
|
+
},
|
|
17553
|
+
"description": "The activation identifier",
|
|
17554
|
+
"required": true
|
|
17555
|
+
}
|
|
17556
|
+
],
|
|
17557
|
+
"responses": {
|
|
17558
|
+
"200": {
|
|
17559
|
+
"description": "Successful response",
|
|
17560
|
+
"content": {
|
|
17561
|
+
"application/json": {
|
|
17562
|
+
"schema": {
|
|
17563
|
+
"type": "object",
|
|
17564
|
+
"properties": {
|
|
17565
|
+
"status": {
|
|
17566
|
+
"type": "string",
|
|
17567
|
+
"enum": [
|
|
17568
|
+
"ok"
|
|
17569
|
+
]
|
|
17570
|
+
},
|
|
17571
|
+
"message": {
|
|
17572
|
+
"type": "string",
|
|
17573
|
+
"example": "Success message."
|
|
17574
|
+
},
|
|
17575
|
+
"data": {
|
|
17576
|
+
"$ref": "#/components/schemas/EventActivation"
|
|
17577
|
+
}
|
|
17578
|
+
},
|
|
17579
|
+
"required": [
|
|
17580
|
+
"status",
|
|
17581
|
+
"message",
|
|
17582
|
+
"data"
|
|
17583
|
+
]
|
|
17584
|
+
}
|
|
17585
|
+
}
|
|
17586
|
+
}
|
|
17587
|
+
}
|
|
17588
|
+
},
|
|
17589
|
+
"tags": [
|
|
17590
|
+
"Events::Activations::Sessions"
|
|
17591
|
+
]
|
|
17540
17592
|
}
|
|
17541
17593
|
},
|
|
17542
17594
|
"/events/{eventId}/activations/{activationId}/sessions/{sessionId}": {
|
|
@@ -58678,107 +58730,6 @@
|
|
|
58678
58730
|
]
|
|
58679
58731
|
}
|
|
58680
58732
|
},
|
|
58681
|
-
"/events/{eventId}/threads": {
|
|
58682
|
-
"get": {
|
|
58683
|
-
"operationId": "GetEventThreads",
|
|
58684
|
-
"summary": "Get Event Threads",
|
|
58685
|
-
"description": "Get Event Threads endpoint",
|
|
58686
|
-
"parameters": [
|
|
58687
|
-
{
|
|
58688
|
-
"in": "path",
|
|
58689
|
-
"name": "eventId",
|
|
58690
|
-
"schema": {
|
|
58691
|
-
"type": "string"
|
|
58692
|
-
},
|
|
58693
|
-
"description": "The event identifier",
|
|
58694
|
-
"required": true
|
|
58695
|
-
},
|
|
58696
|
-
{
|
|
58697
|
-
"in": "query",
|
|
58698
|
-
"name": "page",
|
|
58699
|
-
"schema": {
|
|
58700
|
-
"type": "integer",
|
|
58701
|
-
"minimum": 1,
|
|
58702
|
-
"default": 1
|
|
58703
|
-
},
|
|
58704
|
-
"description": "Page number",
|
|
58705
|
-
"required": false
|
|
58706
|
-
},
|
|
58707
|
-
{
|
|
58708
|
-
"in": "query",
|
|
58709
|
-
"name": "pageSize",
|
|
58710
|
-
"schema": {
|
|
58711
|
-
"type": "integer",
|
|
58712
|
-
"minimum": 1,
|
|
58713
|
-
"maximum": 100,
|
|
58714
|
-
"default": 25
|
|
58715
|
-
},
|
|
58716
|
-
"description": "Number of items per page",
|
|
58717
|
-
"required": false
|
|
58718
|
-
},
|
|
58719
|
-
{
|
|
58720
|
-
"in": "query",
|
|
58721
|
-
"name": "orderBy",
|
|
58722
|
-
"schema": {
|
|
58723
|
-
"type": "string"
|
|
58724
|
-
},
|
|
58725
|
-
"description": "Field to order by",
|
|
58726
|
-
"required": false
|
|
58727
|
-
},
|
|
58728
|
-
{
|
|
58729
|
-
"in": "query",
|
|
58730
|
-
"name": "search",
|
|
58731
|
-
"schema": {
|
|
58732
|
-
"type": "string"
|
|
58733
|
-
},
|
|
58734
|
-
"description": "Search query",
|
|
58735
|
-
"required": false
|
|
58736
|
-
}
|
|
58737
|
-
],
|
|
58738
|
-
"responses": {
|
|
58739
|
-
"200": {
|
|
58740
|
-
"description": "Successful response",
|
|
58741
|
-
"content": {
|
|
58742
|
-
"application/json": {
|
|
58743
|
-
"schema": {
|
|
58744
|
-
"type": "object",
|
|
58745
|
-
"properties": {
|
|
58746
|
-
"status": {
|
|
58747
|
-
"type": "string",
|
|
58748
|
-
"enum": [
|
|
58749
|
-
"ok"
|
|
58750
|
-
]
|
|
58751
|
-
},
|
|
58752
|
-
"message": {
|
|
58753
|
-
"type": "string",
|
|
58754
|
-
"example": "Success message."
|
|
58755
|
-
},
|
|
58756
|
-
"data": {
|
|
58757
|
-
"type": "array",
|
|
58758
|
-
"items": {
|
|
58759
|
-
"$ref": "#/components/schemas/Thread"
|
|
58760
|
-
}
|
|
58761
|
-
},
|
|
58762
|
-
"count": {
|
|
58763
|
-
"type": "integer",
|
|
58764
|
-
"example": 100
|
|
58765
|
-
}
|
|
58766
|
-
},
|
|
58767
|
-
"required": [
|
|
58768
|
-
"status",
|
|
58769
|
-
"message",
|
|
58770
|
-
"data"
|
|
58771
|
-
]
|
|
58772
|
-
}
|
|
58773
|
-
}
|
|
58774
|
-
}
|
|
58775
|
-
}
|
|
58776
|
-
},
|
|
58777
|
-
"tags": [
|
|
58778
|
-
"Events"
|
|
58779
|
-
]
|
|
58780
|
-
}
|
|
58781
|
-
},
|
|
58782
58733
|
"/events/{eventId}/tiers": {
|
|
58783
58734
|
"get": {
|
|
58784
58735
|
"operationId": "GetEventTiers",
|
|
@@ -63072,107 +63023,6 @@
|
|
|
63072
63023
|
]
|
|
63073
63024
|
}
|
|
63074
63025
|
},
|
|
63075
|
-
"/groups/{groupId}/threads": {
|
|
63076
|
-
"get": {
|
|
63077
|
-
"operationId": "GetGroupThreads",
|
|
63078
|
-
"summary": "Get Group Threads",
|
|
63079
|
-
"description": "Get Group Threads endpoint",
|
|
63080
|
-
"parameters": [
|
|
63081
|
-
{
|
|
63082
|
-
"in": "path",
|
|
63083
|
-
"name": "groupId",
|
|
63084
|
-
"schema": {
|
|
63085
|
-
"type": "string"
|
|
63086
|
-
},
|
|
63087
|
-
"description": "The group identifier",
|
|
63088
|
-
"required": true
|
|
63089
|
-
},
|
|
63090
|
-
{
|
|
63091
|
-
"in": "query",
|
|
63092
|
-
"name": "page",
|
|
63093
|
-
"schema": {
|
|
63094
|
-
"type": "integer",
|
|
63095
|
-
"minimum": 1,
|
|
63096
|
-
"default": 1
|
|
63097
|
-
},
|
|
63098
|
-
"description": "Page number",
|
|
63099
|
-
"required": false
|
|
63100
|
-
},
|
|
63101
|
-
{
|
|
63102
|
-
"in": "query",
|
|
63103
|
-
"name": "pageSize",
|
|
63104
|
-
"schema": {
|
|
63105
|
-
"type": "integer",
|
|
63106
|
-
"minimum": 1,
|
|
63107
|
-
"maximum": 100,
|
|
63108
|
-
"default": 25
|
|
63109
|
-
},
|
|
63110
|
-
"description": "Number of items per page",
|
|
63111
|
-
"required": false
|
|
63112
|
-
},
|
|
63113
|
-
{
|
|
63114
|
-
"in": "query",
|
|
63115
|
-
"name": "orderBy",
|
|
63116
|
-
"schema": {
|
|
63117
|
-
"type": "string"
|
|
63118
|
-
},
|
|
63119
|
-
"description": "Field to order by",
|
|
63120
|
-
"required": false
|
|
63121
|
-
},
|
|
63122
|
-
{
|
|
63123
|
-
"in": "query",
|
|
63124
|
-
"name": "search",
|
|
63125
|
-
"schema": {
|
|
63126
|
-
"type": "string"
|
|
63127
|
-
},
|
|
63128
|
-
"description": "Search query",
|
|
63129
|
-
"required": false
|
|
63130
|
-
}
|
|
63131
|
-
],
|
|
63132
|
-
"responses": {
|
|
63133
|
-
"200": {
|
|
63134
|
-
"description": "Successful response",
|
|
63135
|
-
"content": {
|
|
63136
|
-
"application/json": {
|
|
63137
|
-
"schema": {
|
|
63138
|
-
"type": "object",
|
|
63139
|
-
"properties": {
|
|
63140
|
-
"status": {
|
|
63141
|
-
"type": "string",
|
|
63142
|
-
"enum": [
|
|
63143
|
-
"ok"
|
|
63144
|
-
]
|
|
63145
|
-
},
|
|
63146
|
-
"message": {
|
|
63147
|
-
"type": "string",
|
|
63148
|
-
"example": "Success message."
|
|
63149
|
-
},
|
|
63150
|
-
"data": {
|
|
63151
|
-
"type": "array",
|
|
63152
|
-
"items": {
|
|
63153
|
-
"$ref": "#/components/schemas/Thread"
|
|
63154
|
-
}
|
|
63155
|
-
},
|
|
63156
|
-
"count": {
|
|
63157
|
-
"type": "integer",
|
|
63158
|
-
"example": 100
|
|
63159
|
-
}
|
|
63160
|
-
},
|
|
63161
|
-
"required": [
|
|
63162
|
-
"status",
|
|
63163
|
-
"message",
|
|
63164
|
-
"data"
|
|
63165
|
-
]
|
|
63166
|
-
}
|
|
63167
|
-
}
|
|
63168
|
-
}
|
|
63169
|
-
}
|
|
63170
|
-
},
|
|
63171
|
-
"tags": [
|
|
63172
|
-
"Groups"
|
|
63173
|
-
]
|
|
63174
|
-
}
|
|
63175
|
-
},
|
|
63176
63026
|
"/groups/{groupId}/translations": {
|
|
63177
63027
|
"get": {
|
|
63178
63028
|
"operationId": "GetGroupTranslations",
|
|
@@ -88839,15 +88689,6 @@
|
|
|
88839
88689
|
"summary": "Get Threads",
|
|
88840
88690
|
"description": "Get Threads endpoint",
|
|
88841
88691
|
"parameters": [
|
|
88842
|
-
{
|
|
88843
|
-
"in": "query",
|
|
88844
|
-
"name": "type",
|
|
88845
|
-
"schema": {
|
|
88846
|
-
"$ref": "#/components/schemas/ThreadType"
|
|
88847
|
-
},
|
|
88848
|
-
"description": "Filter by type",
|
|
88849
|
-
"required": false
|
|
88850
|
-
},
|
|
88851
88692
|
{
|
|
88852
88693
|
"in": "query",
|
|
88853
88694
|
"name": "page",
|
|
@@ -88984,170 +88825,19 @@
|
|
|
88984
88825
|
]
|
|
88985
88826
|
}
|
|
88986
88827
|
},
|
|
88987
|
-
"/threads/
|
|
88988
|
-
"get": {
|
|
88989
|
-
"operationId": "GetThreadCircles",
|
|
88990
|
-
"summary": "Get Thread Circles",
|
|
88991
|
-
"description": "Get Thread Circles endpoint",
|
|
88992
|
-
"parameters": [
|
|
88993
|
-
{
|
|
88994
|
-
"in": "query",
|
|
88995
|
-
"name": "type",
|
|
88996
|
-
"schema": {
|
|
88997
|
-
"$ref": "#/components/schemas/ThreadCircleType"
|
|
88998
|
-
},
|
|
88999
|
-
"description": "Filter by type",
|
|
89000
|
-
"required": true
|
|
89001
|
-
},
|
|
89002
|
-
{
|
|
89003
|
-
"in": "query",
|
|
89004
|
-
"name": "page",
|
|
89005
|
-
"schema": {
|
|
89006
|
-
"type": "integer",
|
|
89007
|
-
"minimum": 1,
|
|
89008
|
-
"default": 1
|
|
89009
|
-
},
|
|
89010
|
-
"description": "Page number",
|
|
89011
|
-
"required": false
|
|
89012
|
-
},
|
|
89013
|
-
{
|
|
89014
|
-
"in": "query",
|
|
89015
|
-
"name": "pageSize",
|
|
89016
|
-
"schema": {
|
|
89017
|
-
"type": "integer",
|
|
89018
|
-
"minimum": 1,
|
|
89019
|
-
"maximum": 100,
|
|
89020
|
-
"default": 25
|
|
89021
|
-
},
|
|
89022
|
-
"description": "Number of items per page",
|
|
89023
|
-
"required": false
|
|
89024
|
-
},
|
|
89025
|
-
{
|
|
89026
|
-
"in": "query",
|
|
89027
|
-
"name": "orderBy",
|
|
89028
|
-
"schema": {
|
|
89029
|
-
"type": "string"
|
|
89030
|
-
},
|
|
89031
|
-
"description": "Field to order by",
|
|
89032
|
-
"required": false
|
|
89033
|
-
},
|
|
89034
|
-
{
|
|
89035
|
-
"in": "query",
|
|
89036
|
-
"name": "search",
|
|
89037
|
-
"schema": {
|
|
89038
|
-
"type": "string"
|
|
89039
|
-
},
|
|
89040
|
-
"description": "Search query",
|
|
89041
|
-
"required": false
|
|
89042
|
-
}
|
|
89043
|
-
],
|
|
89044
|
-
"responses": {
|
|
89045
|
-
"200": {
|
|
89046
|
-
"description": "Successful response",
|
|
89047
|
-
"content": {
|
|
89048
|
-
"application/json": {
|
|
89049
|
-
"schema": {
|
|
89050
|
-
"type": "object",
|
|
89051
|
-
"properties": {
|
|
89052
|
-
"status": {
|
|
89053
|
-
"type": "string",
|
|
89054
|
-
"enum": [
|
|
89055
|
-
"ok"
|
|
89056
|
-
]
|
|
89057
|
-
},
|
|
89058
|
-
"message": {
|
|
89059
|
-
"type": "string",
|
|
89060
|
-
"example": "Success message."
|
|
89061
|
-
},
|
|
89062
|
-
"data": {
|
|
89063
|
-
"type": "array",
|
|
89064
|
-
"items": {
|
|
89065
|
-
"$ref": "#/components/schemas/ThreadCircle"
|
|
89066
|
-
}
|
|
89067
|
-
},
|
|
89068
|
-
"count": {
|
|
89069
|
-
"type": "integer",
|
|
89070
|
-
"example": 100
|
|
89071
|
-
}
|
|
89072
|
-
},
|
|
89073
|
-
"required": [
|
|
89074
|
-
"status",
|
|
89075
|
-
"message",
|
|
89076
|
-
"data"
|
|
89077
|
-
]
|
|
89078
|
-
}
|
|
89079
|
-
}
|
|
89080
|
-
}
|
|
89081
|
-
}
|
|
89082
|
-
},
|
|
89083
|
-
"tags": [
|
|
89084
|
-
"Threads::Circles"
|
|
89085
|
-
]
|
|
89086
|
-
},
|
|
89087
|
-
"post": {
|
|
89088
|
-
"operationId": "CreateThreadCircle",
|
|
89089
|
-
"summary": "Create Thread Circle",
|
|
89090
|
-
"description": "Create Thread Circle endpoint",
|
|
89091
|
-
"requestBody": {
|
|
89092
|
-
"required": true,
|
|
89093
|
-
"content": {
|
|
89094
|
-
"application/json": {
|
|
89095
|
-
"schema": {
|
|
89096
|
-
"$ref": "#/components/schemas/ThreadCircleCreateInputs"
|
|
89097
|
-
}
|
|
89098
|
-
}
|
|
89099
|
-
}
|
|
89100
|
-
},
|
|
89101
|
-
"responses": {
|
|
89102
|
-
"200": {
|
|
89103
|
-
"description": "Successful response",
|
|
89104
|
-
"content": {
|
|
89105
|
-
"application/json": {
|
|
89106
|
-
"schema": {
|
|
89107
|
-
"type": "object",
|
|
89108
|
-
"properties": {
|
|
89109
|
-
"status": {
|
|
89110
|
-
"type": "string",
|
|
89111
|
-
"enum": [
|
|
89112
|
-
"ok"
|
|
89113
|
-
]
|
|
89114
|
-
},
|
|
89115
|
-
"message": {
|
|
89116
|
-
"type": "string",
|
|
89117
|
-
"example": "Success message."
|
|
89118
|
-
},
|
|
89119
|
-
"data": {
|
|
89120
|
-
"$ref": "#/components/schemas/ThreadCircle"
|
|
89121
|
-
}
|
|
89122
|
-
},
|
|
89123
|
-
"required": [
|
|
89124
|
-
"status",
|
|
89125
|
-
"message",
|
|
89126
|
-
"data"
|
|
89127
|
-
]
|
|
89128
|
-
}
|
|
89129
|
-
}
|
|
89130
|
-
}
|
|
89131
|
-
}
|
|
89132
|
-
},
|
|
89133
|
-
"tags": [
|
|
89134
|
-
"Threads::Circles"
|
|
89135
|
-
]
|
|
89136
|
-
}
|
|
89137
|
-
},
|
|
89138
|
-
"/threads/circles/{circleId}": {
|
|
88828
|
+
"/threads/{threadId}": {
|
|
89139
88829
|
"get": {
|
|
89140
|
-
"operationId": "
|
|
89141
|
-
"summary": "Get Thread
|
|
89142
|
-
"description": "Get Thread
|
|
88830
|
+
"operationId": "GetThread",
|
|
88831
|
+
"summary": "Get Thread",
|
|
88832
|
+
"description": "Get Thread endpoint",
|
|
89143
88833
|
"parameters": [
|
|
89144
88834
|
{
|
|
89145
88835
|
"in": "path",
|
|
89146
|
-
"name": "
|
|
88836
|
+
"name": "threadId",
|
|
89147
88837
|
"schema": {
|
|
89148
88838
|
"type": "string"
|
|
89149
88839
|
},
|
|
89150
|
-
"description": "The
|
|
88840
|
+
"description": "The thread identifier",
|
|
89151
88841
|
"required": true
|
|
89152
88842
|
}
|
|
89153
88843
|
],
|
|
@@ -89170,7 +88860,7 @@
|
|
|
89170
88860
|
"example": "Success message."
|
|
89171
88861
|
},
|
|
89172
88862
|
"data": {
|
|
89173
|
-
"$ref": "#/components/schemas/
|
|
88863
|
+
"$ref": "#/components/schemas/Thread"
|
|
89174
88864
|
}
|
|
89175
88865
|
},
|
|
89176
88866
|
"required": [
|
|
@@ -89184,21 +88874,21 @@
|
|
|
89184
88874
|
}
|
|
89185
88875
|
},
|
|
89186
88876
|
"tags": [
|
|
89187
|
-
"Threads
|
|
88877
|
+
"Threads"
|
|
89188
88878
|
]
|
|
89189
88879
|
},
|
|
89190
88880
|
"put": {
|
|
89191
|
-
"operationId": "
|
|
89192
|
-
"summary": "Update Thread
|
|
89193
|
-
"description": "Update Thread
|
|
88881
|
+
"operationId": "UpdateThread",
|
|
88882
|
+
"summary": "Update Thread",
|
|
88883
|
+
"description": "Update Thread endpoint",
|
|
89194
88884
|
"parameters": [
|
|
89195
88885
|
{
|
|
89196
88886
|
"in": "path",
|
|
89197
|
-
"name": "
|
|
88887
|
+
"name": "threadId",
|
|
89198
88888
|
"schema": {
|
|
89199
88889
|
"type": "string"
|
|
89200
88890
|
},
|
|
89201
|
-
"description": "The
|
|
88891
|
+
"description": "The thread identifier",
|
|
89202
88892
|
"required": true
|
|
89203
88893
|
}
|
|
89204
88894
|
],
|
|
@@ -89207,7 +88897,7 @@
|
|
|
89207
88897
|
"content": {
|
|
89208
88898
|
"application/json": {
|
|
89209
88899
|
"schema": {
|
|
89210
|
-
"$ref": "#/components/schemas/
|
|
88900
|
+
"$ref": "#/components/schemas/ThreadUpdateInputs"
|
|
89211
88901
|
}
|
|
89212
88902
|
}
|
|
89213
88903
|
}
|
|
@@ -89231,7 +88921,7 @@
|
|
|
89231
88921
|
"example": "Success message."
|
|
89232
88922
|
},
|
|
89233
88923
|
"data": {
|
|
89234
|
-
"$ref": "#/components/schemas/
|
|
88924
|
+
"$ref": "#/components/schemas/Thread"
|
|
89235
88925
|
}
|
|
89236
88926
|
},
|
|
89237
88927
|
"required": [
|
|
@@ -89245,21 +88935,21 @@
|
|
|
89245
88935
|
}
|
|
89246
88936
|
},
|
|
89247
88937
|
"tags": [
|
|
89248
|
-
"Threads
|
|
88938
|
+
"Threads"
|
|
89249
88939
|
]
|
|
89250
88940
|
},
|
|
89251
88941
|
"delete": {
|
|
89252
|
-
"operationId": "
|
|
89253
|
-
"summary": "Delete Thread
|
|
89254
|
-
"description": "Delete Thread
|
|
88942
|
+
"operationId": "DeleteThread",
|
|
88943
|
+
"summary": "Delete Thread",
|
|
88944
|
+
"description": "Delete Thread endpoint",
|
|
89255
88945
|
"parameters": [
|
|
89256
88946
|
{
|
|
89257
88947
|
"in": "path",
|
|
89258
|
-
"name": "
|
|
88948
|
+
"name": "threadId",
|
|
89259
88949
|
"schema": {
|
|
89260
88950
|
"type": "string"
|
|
89261
88951
|
},
|
|
89262
|
-
"description": "The
|
|
88952
|
+
"description": "The thread identifier",
|
|
89263
88953
|
"required": true
|
|
89264
88954
|
}
|
|
89265
88955
|
],
|
|
@@ -89296,34 +88986,25 @@
|
|
|
89296
88986
|
}
|
|
89297
88987
|
},
|
|
89298
88988
|
"tags": [
|
|
89299
|
-
"Threads
|
|
88989
|
+
"Threads"
|
|
89300
88990
|
]
|
|
89301
88991
|
}
|
|
89302
88992
|
},
|
|
89303
|
-
"/threads/
|
|
88993
|
+
"/threads/{threadId}/accounts": {
|
|
89304
88994
|
"get": {
|
|
89305
|
-
"operationId": "
|
|
89306
|
-
"summary": "Get Thread
|
|
89307
|
-
"description": "Get Thread
|
|
88995
|
+
"operationId": "GetThreadAccounts",
|
|
88996
|
+
"summary": "Get Thread Accounts",
|
|
88997
|
+
"description": "Get Thread Accounts endpoint",
|
|
89308
88998
|
"parameters": [
|
|
89309
88999
|
{
|
|
89310
89000
|
"in": "path",
|
|
89311
|
-
"name": "
|
|
89001
|
+
"name": "threadId",
|
|
89312
89002
|
"schema": {
|
|
89313
89003
|
"type": "string"
|
|
89314
89004
|
},
|
|
89315
|
-
"description": "The
|
|
89005
|
+
"description": "The thread identifier",
|
|
89316
89006
|
"required": true
|
|
89317
89007
|
},
|
|
89318
|
-
{
|
|
89319
|
-
"in": "query",
|
|
89320
|
-
"name": "role",
|
|
89321
|
-
"schema": {
|
|
89322
|
-
"$ref": "#/components/schemas/ThreadCircleAccountRole"
|
|
89323
|
-
},
|
|
89324
|
-
"description": "Filter by role",
|
|
89325
|
-
"required": false
|
|
89326
|
-
},
|
|
89327
89008
|
{
|
|
89328
89009
|
"in": "query",
|
|
89329
89010
|
"name": "page",
|
|
@@ -89387,7 +89068,7 @@
|
|
|
89387
89068
|
"data": {
|
|
89388
89069
|
"type": "array",
|
|
89389
89070
|
"items": {
|
|
89390
|
-
"$ref": "#/components/schemas/
|
|
89071
|
+
"$ref": "#/components/schemas/Account"
|
|
89391
89072
|
}
|
|
89392
89073
|
},
|
|
89393
89074
|
"count": {
|
|
@@ -89406,214 +89087,23 @@
|
|
|
89406
89087
|
}
|
|
89407
89088
|
},
|
|
89408
89089
|
"tags": [
|
|
89409
|
-
"Threads::
|
|
89410
|
-
]
|
|
89411
|
-
},
|
|
89412
|
-
"post": {
|
|
89413
|
-
"operationId": "CreateThreadCircleAccount",
|
|
89414
|
-
"summary": "Create Thread Circle Account",
|
|
89415
|
-
"description": "Create Thread Circle Account endpoint",
|
|
89416
|
-
"parameters": [
|
|
89417
|
-
{
|
|
89418
|
-
"in": "path",
|
|
89419
|
-
"name": "circleId",
|
|
89420
|
-
"schema": {
|
|
89421
|
-
"type": "string"
|
|
89422
|
-
},
|
|
89423
|
-
"description": "The circle identifier",
|
|
89424
|
-
"required": true
|
|
89425
|
-
}
|
|
89426
|
-
],
|
|
89427
|
-
"requestBody": {
|
|
89428
|
-
"required": true,
|
|
89429
|
-
"content": {
|
|
89430
|
-
"application/json": {
|
|
89431
|
-
"schema": {
|
|
89432
|
-
"$ref": "#/components/schemas/ThreadCircleAccountCreateInputs"
|
|
89433
|
-
}
|
|
89434
|
-
}
|
|
89435
|
-
}
|
|
89436
|
-
},
|
|
89437
|
-
"responses": {
|
|
89438
|
-
"200": {
|
|
89439
|
-
"description": "Successful response",
|
|
89440
|
-
"content": {
|
|
89441
|
-
"application/json": {
|
|
89442
|
-
"schema": {
|
|
89443
|
-
"type": "object",
|
|
89444
|
-
"properties": {
|
|
89445
|
-
"status": {
|
|
89446
|
-
"type": "string",
|
|
89447
|
-
"enum": [
|
|
89448
|
-
"ok"
|
|
89449
|
-
]
|
|
89450
|
-
},
|
|
89451
|
-
"message": {
|
|
89452
|
-
"type": "string",
|
|
89453
|
-
"example": "Success message."
|
|
89454
|
-
},
|
|
89455
|
-
"data": {
|
|
89456
|
-
"$ref": "#/components/schemas/ThreadCircleAccount"
|
|
89457
|
-
}
|
|
89458
|
-
},
|
|
89459
|
-
"required": [
|
|
89460
|
-
"status",
|
|
89461
|
-
"message",
|
|
89462
|
-
"data"
|
|
89463
|
-
]
|
|
89464
|
-
}
|
|
89465
|
-
}
|
|
89466
|
-
}
|
|
89467
|
-
}
|
|
89468
|
-
},
|
|
89469
|
-
"tags": [
|
|
89470
|
-
"Threads::Circles::Accounts"
|
|
89090
|
+
"Threads::Accounts"
|
|
89471
89091
|
]
|
|
89472
89092
|
}
|
|
89473
89093
|
},
|
|
89474
|
-
"/threads/
|
|
89475
|
-
"get": {
|
|
89476
|
-
"operationId": "GetThreadCircleAccount",
|
|
89477
|
-
"summary": "Get Thread Circle Account",
|
|
89478
|
-
"description": "Get Thread Circle Account endpoint",
|
|
89479
|
-
"parameters": [
|
|
89480
|
-
{
|
|
89481
|
-
"in": "path",
|
|
89482
|
-
"name": "circleId",
|
|
89483
|
-
"schema": {
|
|
89484
|
-
"type": "string"
|
|
89485
|
-
},
|
|
89486
|
-
"description": "The circle identifier",
|
|
89487
|
-
"required": true
|
|
89488
|
-
},
|
|
89489
|
-
{
|
|
89490
|
-
"in": "path",
|
|
89491
|
-
"name": "accountId",
|
|
89492
|
-
"schema": {
|
|
89493
|
-
"type": "string"
|
|
89494
|
-
},
|
|
89495
|
-
"description": "The account identifier",
|
|
89496
|
-
"required": true
|
|
89497
|
-
}
|
|
89498
|
-
],
|
|
89499
|
-
"responses": {
|
|
89500
|
-
"200": {
|
|
89501
|
-
"description": "Successful response",
|
|
89502
|
-
"content": {
|
|
89503
|
-
"application/json": {
|
|
89504
|
-
"schema": {
|
|
89505
|
-
"type": "object",
|
|
89506
|
-
"properties": {
|
|
89507
|
-
"status": {
|
|
89508
|
-
"type": "string",
|
|
89509
|
-
"enum": [
|
|
89510
|
-
"ok"
|
|
89511
|
-
]
|
|
89512
|
-
},
|
|
89513
|
-
"message": {
|
|
89514
|
-
"type": "string",
|
|
89515
|
-
"example": "Success message."
|
|
89516
|
-
},
|
|
89517
|
-
"data": {
|
|
89518
|
-
"$ref": "#/components/schemas/ThreadCircleAccount"
|
|
89519
|
-
}
|
|
89520
|
-
},
|
|
89521
|
-
"required": [
|
|
89522
|
-
"status",
|
|
89523
|
-
"message",
|
|
89524
|
-
"data"
|
|
89525
|
-
]
|
|
89526
|
-
}
|
|
89527
|
-
}
|
|
89528
|
-
}
|
|
89529
|
-
}
|
|
89530
|
-
},
|
|
89531
|
-
"tags": [
|
|
89532
|
-
"Threads::Circles::Accounts"
|
|
89533
|
-
]
|
|
89534
|
-
},
|
|
89094
|
+
"/threads/{threadId}/accounts/{accountId}": {
|
|
89535
89095
|
"put": {
|
|
89536
|
-
"operationId": "
|
|
89537
|
-
"summary": "Update Thread
|
|
89538
|
-
"description": "Update Thread
|
|
89096
|
+
"operationId": "UpdateThreadAccount",
|
|
89097
|
+
"summary": "Update Thread Account",
|
|
89098
|
+
"description": "Update Thread Account endpoint",
|
|
89539
89099
|
"parameters": [
|
|
89540
89100
|
{
|
|
89541
89101
|
"in": "path",
|
|
89542
|
-
"name": "
|
|
89543
|
-
"schema": {
|
|
89544
|
-
"type": "string"
|
|
89545
|
-
},
|
|
89546
|
-
"description": "The circle identifier",
|
|
89547
|
-
"required": true
|
|
89548
|
-
},
|
|
89549
|
-
{
|
|
89550
|
-
"in": "path",
|
|
89551
|
-
"name": "accountId",
|
|
89552
|
-
"schema": {
|
|
89553
|
-
"type": "string"
|
|
89554
|
-
},
|
|
89555
|
-
"description": "The account identifier",
|
|
89556
|
-
"required": true
|
|
89557
|
-
}
|
|
89558
|
-
],
|
|
89559
|
-
"requestBody": {
|
|
89560
|
-
"required": true,
|
|
89561
|
-
"content": {
|
|
89562
|
-
"application/json": {
|
|
89563
|
-
"schema": {
|
|
89564
|
-
"$ref": "#/components/schemas/ThreadCircleAccountUpdateInputs"
|
|
89565
|
-
}
|
|
89566
|
-
}
|
|
89567
|
-
}
|
|
89568
|
-
},
|
|
89569
|
-
"responses": {
|
|
89570
|
-
"200": {
|
|
89571
|
-
"description": "Successful response",
|
|
89572
|
-
"content": {
|
|
89573
|
-
"application/json": {
|
|
89574
|
-
"schema": {
|
|
89575
|
-
"type": "object",
|
|
89576
|
-
"properties": {
|
|
89577
|
-
"status": {
|
|
89578
|
-
"type": "string",
|
|
89579
|
-
"enum": [
|
|
89580
|
-
"ok"
|
|
89581
|
-
]
|
|
89582
|
-
},
|
|
89583
|
-
"message": {
|
|
89584
|
-
"type": "string",
|
|
89585
|
-
"example": "Success message."
|
|
89586
|
-
},
|
|
89587
|
-
"data": {
|
|
89588
|
-
"$ref": "#/components/schemas/ThreadCircleAccount"
|
|
89589
|
-
}
|
|
89590
|
-
},
|
|
89591
|
-
"required": [
|
|
89592
|
-
"status",
|
|
89593
|
-
"message",
|
|
89594
|
-
"data"
|
|
89595
|
-
]
|
|
89596
|
-
}
|
|
89597
|
-
}
|
|
89598
|
-
}
|
|
89599
|
-
}
|
|
89600
|
-
},
|
|
89601
|
-
"tags": [
|
|
89602
|
-
"Threads::Circles::Accounts"
|
|
89603
|
-
]
|
|
89604
|
-
},
|
|
89605
|
-
"delete": {
|
|
89606
|
-
"operationId": "DeleteThreadCircleAccount",
|
|
89607
|
-
"summary": "Delete Thread Circle Account",
|
|
89608
|
-
"description": "Delete Thread Circle Account endpoint",
|
|
89609
|
-
"parameters": [
|
|
89610
|
-
{
|
|
89611
|
-
"in": "path",
|
|
89612
|
-
"name": "circleId",
|
|
89102
|
+
"name": "threadId",
|
|
89613
89103
|
"schema": {
|
|
89614
89104
|
"type": "string"
|
|
89615
89105
|
},
|
|
89616
|
-
"description": "The
|
|
89106
|
+
"description": "The thread identifier",
|
|
89617
89107
|
"required": true
|
|
89618
89108
|
},
|
|
89619
89109
|
{
|
|
@@ -89626,217 +89116,12 @@
|
|
|
89626
89116
|
"required": true
|
|
89627
89117
|
}
|
|
89628
89118
|
],
|
|
89629
|
-
"responses": {
|
|
89630
|
-
"200": {
|
|
89631
|
-
"description": "Successful response",
|
|
89632
|
-
"content": {
|
|
89633
|
-
"application/json": {
|
|
89634
|
-
"schema": {
|
|
89635
|
-
"type": "object",
|
|
89636
|
-
"properties": {
|
|
89637
|
-
"status": {
|
|
89638
|
-
"type": "string",
|
|
89639
|
-
"enum": [
|
|
89640
|
-
"ok"
|
|
89641
|
-
]
|
|
89642
|
-
},
|
|
89643
|
-
"message": {
|
|
89644
|
-
"type": "string",
|
|
89645
|
-
"example": "Success message."
|
|
89646
|
-
},
|
|
89647
|
-
"data": {
|
|
89648
|
-
"nullable": true
|
|
89649
|
-
}
|
|
89650
|
-
},
|
|
89651
|
-
"required": [
|
|
89652
|
-
"status",
|
|
89653
|
-
"message",
|
|
89654
|
-
"data"
|
|
89655
|
-
]
|
|
89656
|
-
}
|
|
89657
|
-
}
|
|
89658
|
-
}
|
|
89659
|
-
}
|
|
89660
|
-
},
|
|
89661
|
-
"tags": [
|
|
89662
|
-
"Threads::Circles::Accounts"
|
|
89663
|
-
]
|
|
89664
|
-
}
|
|
89665
|
-
},
|
|
89666
|
-
"/threads/circles/{circleId}/threads": {
|
|
89667
|
-
"get": {
|
|
89668
|
-
"operationId": "GetThreadCircleThreads",
|
|
89669
|
-
"summary": "Get Thread Circle Threads",
|
|
89670
|
-
"description": "Get Thread Circle Threads endpoint",
|
|
89671
|
-
"parameters": [
|
|
89672
|
-
{
|
|
89673
|
-
"in": "path",
|
|
89674
|
-
"name": "circleId",
|
|
89675
|
-
"schema": {
|
|
89676
|
-
"type": "string"
|
|
89677
|
-
},
|
|
89678
|
-
"description": "The circle identifier",
|
|
89679
|
-
"required": true
|
|
89680
|
-
},
|
|
89681
|
-
{
|
|
89682
|
-
"in": "query",
|
|
89683
|
-
"name": "page",
|
|
89684
|
-
"schema": {
|
|
89685
|
-
"type": "integer",
|
|
89686
|
-
"minimum": 1,
|
|
89687
|
-
"default": 1
|
|
89688
|
-
},
|
|
89689
|
-
"description": "Page number",
|
|
89690
|
-
"required": false
|
|
89691
|
-
},
|
|
89692
|
-
{
|
|
89693
|
-
"in": "query",
|
|
89694
|
-
"name": "pageSize",
|
|
89695
|
-
"schema": {
|
|
89696
|
-
"type": "integer",
|
|
89697
|
-
"minimum": 1,
|
|
89698
|
-
"maximum": 100,
|
|
89699
|
-
"default": 25
|
|
89700
|
-
},
|
|
89701
|
-
"description": "Number of items per page",
|
|
89702
|
-
"required": false
|
|
89703
|
-
},
|
|
89704
|
-
{
|
|
89705
|
-
"in": "query",
|
|
89706
|
-
"name": "orderBy",
|
|
89707
|
-
"schema": {
|
|
89708
|
-
"type": "string"
|
|
89709
|
-
},
|
|
89710
|
-
"description": "Field to order by",
|
|
89711
|
-
"required": false
|
|
89712
|
-
},
|
|
89713
|
-
{
|
|
89714
|
-
"in": "query",
|
|
89715
|
-
"name": "search",
|
|
89716
|
-
"schema": {
|
|
89717
|
-
"type": "string"
|
|
89718
|
-
},
|
|
89719
|
-
"description": "Search query",
|
|
89720
|
-
"required": false
|
|
89721
|
-
}
|
|
89722
|
-
],
|
|
89723
|
-
"responses": {
|
|
89724
|
-
"200": {
|
|
89725
|
-
"description": "Successful response",
|
|
89726
|
-
"content": {
|
|
89727
|
-
"application/json": {
|
|
89728
|
-
"schema": {
|
|
89729
|
-
"type": "object",
|
|
89730
|
-
"properties": {
|
|
89731
|
-
"status": {
|
|
89732
|
-
"type": "string",
|
|
89733
|
-
"enum": [
|
|
89734
|
-
"ok"
|
|
89735
|
-
]
|
|
89736
|
-
},
|
|
89737
|
-
"message": {
|
|
89738
|
-
"type": "string",
|
|
89739
|
-
"example": "Success message."
|
|
89740
|
-
},
|
|
89741
|
-
"data": {
|
|
89742
|
-
"type": "array",
|
|
89743
|
-
"items": {
|
|
89744
|
-
"$ref": "#/components/schemas/Thread"
|
|
89745
|
-
}
|
|
89746
|
-
},
|
|
89747
|
-
"count": {
|
|
89748
|
-
"type": "integer",
|
|
89749
|
-
"example": 100
|
|
89750
|
-
}
|
|
89751
|
-
},
|
|
89752
|
-
"required": [
|
|
89753
|
-
"status",
|
|
89754
|
-
"message",
|
|
89755
|
-
"data"
|
|
89756
|
-
]
|
|
89757
|
-
}
|
|
89758
|
-
}
|
|
89759
|
-
}
|
|
89760
|
-
}
|
|
89761
|
-
},
|
|
89762
|
-
"tags": [
|
|
89763
|
-
"Threads::Circles"
|
|
89764
|
-
]
|
|
89765
|
-
}
|
|
89766
|
-
},
|
|
89767
|
-
"/threads/{threadId}": {
|
|
89768
|
-
"get": {
|
|
89769
|
-
"operationId": "GetThread",
|
|
89770
|
-
"summary": "Get Thread",
|
|
89771
|
-
"description": "Get Thread endpoint",
|
|
89772
|
-
"parameters": [
|
|
89773
|
-
{
|
|
89774
|
-
"in": "path",
|
|
89775
|
-
"name": "threadId",
|
|
89776
|
-
"schema": {
|
|
89777
|
-
"type": "string"
|
|
89778
|
-
},
|
|
89779
|
-
"description": "The thread identifier",
|
|
89780
|
-
"required": true
|
|
89781
|
-
}
|
|
89782
|
-
],
|
|
89783
|
-
"responses": {
|
|
89784
|
-
"200": {
|
|
89785
|
-
"description": "Successful response",
|
|
89786
|
-
"content": {
|
|
89787
|
-
"application/json": {
|
|
89788
|
-
"schema": {
|
|
89789
|
-
"type": "object",
|
|
89790
|
-
"properties": {
|
|
89791
|
-
"status": {
|
|
89792
|
-
"type": "string",
|
|
89793
|
-
"enum": [
|
|
89794
|
-
"ok"
|
|
89795
|
-
]
|
|
89796
|
-
},
|
|
89797
|
-
"message": {
|
|
89798
|
-
"type": "string",
|
|
89799
|
-
"example": "Success message."
|
|
89800
|
-
},
|
|
89801
|
-
"data": {
|
|
89802
|
-
"$ref": "#/components/schemas/Thread"
|
|
89803
|
-
}
|
|
89804
|
-
},
|
|
89805
|
-
"required": [
|
|
89806
|
-
"status",
|
|
89807
|
-
"message",
|
|
89808
|
-
"data"
|
|
89809
|
-
]
|
|
89810
|
-
}
|
|
89811
|
-
}
|
|
89812
|
-
}
|
|
89813
|
-
}
|
|
89814
|
-
},
|
|
89815
|
-
"tags": [
|
|
89816
|
-
"Threads"
|
|
89817
|
-
]
|
|
89818
|
-
},
|
|
89819
|
-
"put": {
|
|
89820
|
-
"operationId": "UpdateThread",
|
|
89821
|
-
"summary": "Update Thread",
|
|
89822
|
-
"description": "Update Thread endpoint",
|
|
89823
|
-
"parameters": [
|
|
89824
|
-
{
|
|
89825
|
-
"in": "path",
|
|
89826
|
-
"name": "threadId",
|
|
89827
|
-
"schema": {
|
|
89828
|
-
"type": "string"
|
|
89829
|
-
},
|
|
89830
|
-
"description": "The thread identifier",
|
|
89831
|
-
"required": true
|
|
89832
|
-
}
|
|
89833
|
-
],
|
|
89834
89119
|
"requestBody": {
|
|
89835
89120
|
"required": true,
|
|
89836
89121
|
"content": {
|
|
89837
89122
|
"application/json": {
|
|
89838
89123
|
"schema": {
|
|
89839
|
-
"$ref": "#/components/schemas/
|
|
89124
|
+
"$ref": "#/components/schemas/ThreadAccountUpdateInputs"
|
|
89840
89125
|
}
|
|
89841
89126
|
}
|
|
89842
89127
|
}
|
|
@@ -89860,7 +89145,7 @@
|
|
|
89860
89145
|
"example": "Success message."
|
|
89861
89146
|
},
|
|
89862
89147
|
"data": {
|
|
89863
|
-
"$ref": "#/components/schemas/
|
|
89148
|
+
"$ref": "#/components/schemas/ThreadAccount"
|
|
89864
89149
|
}
|
|
89865
89150
|
},
|
|
89866
89151
|
"required": [
|
|
@@ -89874,268 +89159,13 @@
|
|
|
89874
89159
|
}
|
|
89875
89160
|
},
|
|
89876
89161
|
"tags": [
|
|
89877
|
-
"Threads"
|
|
89162
|
+
"Threads::Accounts"
|
|
89878
89163
|
]
|
|
89879
89164
|
},
|
|
89880
89165
|
"delete": {
|
|
89881
|
-
"operationId": "
|
|
89882
|
-
"summary": "Delete Thread",
|
|
89883
|
-
"description": "Delete Thread endpoint",
|
|
89884
|
-
"parameters": [
|
|
89885
|
-
{
|
|
89886
|
-
"in": "path",
|
|
89887
|
-
"name": "threadId",
|
|
89888
|
-
"schema": {
|
|
89889
|
-
"type": "string"
|
|
89890
|
-
},
|
|
89891
|
-
"description": "The thread identifier",
|
|
89892
|
-
"required": true
|
|
89893
|
-
}
|
|
89894
|
-
],
|
|
89895
|
-
"responses": {
|
|
89896
|
-
"200": {
|
|
89897
|
-
"description": "Successful response",
|
|
89898
|
-
"content": {
|
|
89899
|
-
"application/json": {
|
|
89900
|
-
"schema": {
|
|
89901
|
-
"type": "object",
|
|
89902
|
-
"properties": {
|
|
89903
|
-
"status": {
|
|
89904
|
-
"type": "string",
|
|
89905
|
-
"enum": [
|
|
89906
|
-
"ok"
|
|
89907
|
-
]
|
|
89908
|
-
},
|
|
89909
|
-
"message": {
|
|
89910
|
-
"type": "string",
|
|
89911
|
-
"example": "Success message."
|
|
89912
|
-
},
|
|
89913
|
-
"data": {
|
|
89914
|
-
"nullable": true
|
|
89915
|
-
}
|
|
89916
|
-
},
|
|
89917
|
-
"required": [
|
|
89918
|
-
"status",
|
|
89919
|
-
"message",
|
|
89920
|
-
"data"
|
|
89921
|
-
]
|
|
89922
|
-
}
|
|
89923
|
-
}
|
|
89924
|
-
}
|
|
89925
|
-
}
|
|
89926
|
-
},
|
|
89927
|
-
"tags": [
|
|
89928
|
-
"Threads"
|
|
89929
|
-
]
|
|
89930
|
-
}
|
|
89931
|
-
},
|
|
89932
|
-
"/threads/{threadId}/accounts": {
|
|
89933
|
-
"get": {
|
|
89934
|
-
"operationId": "GetThreadAccounts",
|
|
89935
|
-
"summary": "Get Thread Accounts",
|
|
89936
|
-
"description": "Get Thread Accounts endpoint",
|
|
89937
|
-
"parameters": [
|
|
89938
|
-
{
|
|
89939
|
-
"in": "path",
|
|
89940
|
-
"name": "threadId",
|
|
89941
|
-
"schema": {
|
|
89942
|
-
"type": "string"
|
|
89943
|
-
},
|
|
89944
|
-
"description": "The thread identifier",
|
|
89945
|
-
"required": true
|
|
89946
|
-
},
|
|
89947
|
-
{
|
|
89948
|
-
"in": "query",
|
|
89949
|
-
"name": "page",
|
|
89950
|
-
"schema": {
|
|
89951
|
-
"type": "integer",
|
|
89952
|
-
"minimum": 1,
|
|
89953
|
-
"default": 1
|
|
89954
|
-
},
|
|
89955
|
-
"description": "Page number",
|
|
89956
|
-
"required": false
|
|
89957
|
-
},
|
|
89958
|
-
{
|
|
89959
|
-
"in": "query",
|
|
89960
|
-
"name": "pageSize",
|
|
89961
|
-
"schema": {
|
|
89962
|
-
"type": "integer",
|
|
89963
|
-
"minimum": 1,
|
|
89964
|
-
"maximum": 100,
|
|
89965
|
-
"default": 25
|
|
89966
|
-
},
|
|
89967
|
-
"description": "Number of items per page",
|
|
89968
|
-
"required": false
|
|
89969
|
-
},
|
|
89970
|
-
{
|
|
89971
|
-
"in": "query",
|
|
89972
|
-
"name": "orderBy",
|
|
89973
|
-
"schema": {
|
|
89974
|
-
"type": "string"
|
|
89975
|
-
},
|
|
89976
|
-
"description": "Field to order by",
|
|
89977
|
-
"required": false
|
|
89978
|
-
},
|
|
89979
|
-
{
|
|
89980
|
-
"in": "query",
|
|
89981
|
-
"name": "search",
|
|
89982
|
-
"schema": {
|
|
89983
|
-
"type": "string"
|
|
89984
|
-
},
|
|
89985
|
-
"description": "Search query",
|
|
89986
|
-
"required": false
|
|
89987
|
-
}
|
|
89988
|
-
],
|
|
89989
|
-
"responses": {
|
|
89990
|
-
"200": {
|
|
89991
|
-
"description": "Successful response",
|
|
89992
|
-
"content": {
|
|
89993
|
-
"application/json": {
|
|
89994
|
-
"schema": {
|
|
89995
|
-
"type": "object",
|
|
89996
|
-
"properties": {
|
|
89997
|
-
"status": {
|
|
89998
|
-
"type": "string",
|
|
89999
|
-
"enum": [
|
|
90000
|
-
"ok"
|
|
90001
|
-
]
|
|
90002
|
-
},
|
|
90003
|
-
"message": {
|
|
90004
|
-
"type": "string",
|
|
90005
|
-
"example": "Success message."
|
|
90006
|
-
},
|
|
90007
|
-
"data": {
|
|
90008
|
-
"type": "array",
|
|
90009
|
-
"items": {
|
|
90010
|
-
"$ref": "#/components/schemas/Account"
|
|
90011
|
-
}
|
|
90012
|
-
},
|
|
90013
|
-
"count": {
|
|
90014
|
-
"type": "integer",
|
|
90015
|
-
"example": 100
|
|
90016
|
-
}
|
|
90017
|
-
},
|
|
90018
|
-
"required": [
|
|
90019
|
-
"status",
|
|
90020
|
-
"message",
|
|
90021
|
-
"data"
|
|
90022
|
-
]
|
|
90023
|
-
}
|
|
90024
|
-
}
|
|
90025
|
-
}
|
|
90026
|
-
}
|
|
90027
|
-
},
|
|
90028
|
-
"tags": [
|
|
90029
|
-
"Threads::Members"
|
|
90030
|
-
]
|
|
90031
|
-
}
|
|
90032
|
-
},
|
|
90033
|
-
"/threads/{threadId}/members": {
|
|
90034
|
-
"get": {
|
|
90035
|
-
"operationId": "GetThreadMembers",
|
|
90036
|
-
"summary": "Get Thread Members",
|
|
90037
|
-
"description": "Get Thread Members endpoint",
|
|
90038
|
-
"parameters": [
|
|
90039
|
-
{
|
|
90040
|
-
"in": "path",
|
|
90041
|
-
"name": "threadId",
|
|
90042
|
-
"schema": {
|
|
90043
|
-
"type": "string"
|
|
90044
|
-
},
|
|
90045
|
-
"description": "The thread identifier",
|
|
90046
|
-
"required": true
|
|
90047
|
-
},
|
|
90048
|
-
{
|
|
90049
|
-
"in": "query",
|
|
90050
|
-
"name": "page",
|
|
90051
|
-
"schema": {
|
|
90052
|
-
"type": "integer",
|
|
90053
|
-
"minimum": 1,
|
|
90054
|
-
"default": 1
|
|
90055
|
-
},
|
|
90056
|
-
"description": "Page number",
|
|
90057
|
-
"required": false
|
|
90058
|
-
},
|
|
90059
|
-
{
|
|
90060
|
-
"in": "query",
|
|
90061
|
-
"name": "pageSize",
|
|
90062
|
-
"schema": {
|
|
90063
|
-
"type": "integer",
|
|
90064
|
-
"minimum": 1,
|
|
90065
|
-
"maximum": 100,
|
|
90066
|
-
"default": 25
|
|
90067
|
-
},
|
|
90068
|
-
"description": "Number of items per page",
|
|
90069
|
-
"required": false
|
|
90070
|
-
},
|
|
90071
|
-
{
|
|
90072
|
-
"in": "query",
|
|
90073
|
-
"name": "orderBy",
|
|
90074
|
-
"schema": {
|
|
90075
|
-
"type": "string"
|
|
90076
|
-
},
|
|
90077
|
-
"description": "Field to order by",
|
|
90078
|
-
"required": false
|
|
90079
|
-
},
|
|
90080
|
-
{
|
|
90081
|
-
"in": "query",
|
|
90082
|
-
"name": "search",
|
|
90083
|
-
"schema": {
|
|
90084
|
-
"type": "string"
|
|
90085
|
-
},
|
|
90086
|
-
"description": "Search query",
|
|
90087
|
-
"required": false
|
|
90088
|
-
}
|
|
90089
|
-
],
|
|
90090
|
-
"responses": {
|
|
90091
|
-
"200": {
|
|
90092
|
-
"description": "Successful response",
|
|
90093
|
-
"content": {
|
|
90094
|
-
"application/json": {
|
|
90095
|
-
"schema": {
|
|
90096
|
-
"type": "object",
|
|
90097
|
-
"properties": {
|
|
90098
|
-
"status": {
|
|
90099
|
-
"type": "string",
|
|
90100
|
-
"enum": [
|
|
90101
|
-
"ok"
|
|
90102
|
-
]
|
|
90103
|
-
},
|
|
90104
|
-
"message": {
|
|
90105
|
-
"type": "string",
|
|
90106
|
-
"example": "Success message."
|
|
90107
|
-
},
|
|
90108
|
-
"data": {
|
|
90109
|
-
"type": "array",
|
|
90110
|
-
"items": {
|
|
90111
|
-
"$ref": "#/components/schemas/ThreadMember"
|
|
90112
|
-
}
|
|
90113
|
-
},
|
|
90114
|
-
"count": {
|
|
90115
|
-
"type": "integer",
|
|
90116
|
-
"example": 100
|
|
90117
|
-
}
|
|
90118
|
-
},
|
|
90119
|
-
"required": [
|
|
90120
|
-
"status",
|
|
90121
|
-
"message",
|
|
90122
|
-
"data"
|
|
90123
|
-
]
|
|
90124
|
-
}
|
|
90125
|
-
}
|
|
90126
|
-
}
|
|
90127
|
-
}
|
|
90128
|
-
},
|
|
90129
|
-
"tags": [
|
|
90130
|
-
"Threads::Members"
|
|
90131
|
-
]
|
|
90132
|
-
}
|
|
90133
|
-
},
|
|
90134
|
-
"/threads/{threadId}/members/{accountId}": {
|
|
90135
|
-
"put": {
|
|
90136
|
-
"operationId": "UpdateThreadMember",
|
|
90137
|
-
"summary": "Update Thread Member",
|
|
90138
|
-
"description": "Update Thread Member endpoint",
|
|
89166
|
+
"operationId": "DeleteThreadAccount",
|
|
89167
|
+
"summary": "Delete Thread Account",
|
|
89168
|
+
"description": "Delete Thread Account endpoint",
|
|
90139
89169
|
"parameters": [
|
|
90140
89170
|
{
|
|
90141
89171
|
"in": "path",
|
|
@@ -90156,16 +89186,6 @@
|
|
|
90156
89186
|
"required": true
|
|
90157
89187
|
}
|
|
90158
89188
|
],
|
|
90159
|
-
"requestBody": {
|
|
90160
|
-
"required": true,
|
|
90161
|
-
"content": {
|
|
90162
|
-
"application/json": {
|
|
90163
|
-
"schema": {
|
|
90164
|
-
"$ref": "#/components/schemas/ThreadMemberUpdateInputs"
|
|
90165
|
-
}
|
|
90166
|
-
}
|
|
90167
|
-
}
|
|
90168
|
-
},
|
|
90169
89189
|
"responses": {
|
|
90170
89190
|
"200": {
|
|
90171
89191
|
"description": "Successful response",
|
|
@@ -90185,7 +89205,7 @@
|
|
|
90185
89205
|
"example": "Success message."
|
|
90186
89206
|
},
|
|
90187
89207
|
"data": {
|
|
90188
|
-
"
|
|
89208
|
+
"nullable": true
|
|
90189
89209
|
}
|
|
90190
89210
|
},
|
|
90191
89211
|
"required": [
|
|
@@ -90199,7 +89219,7 @@
|
|
|
90199
89219
|
}
|
|
90200
89220
|
},
|
|
90201
89221
|
"tags": [
|
|
90202
|
-
"Threads::
|
|
89222
|
+
"Threads::Accounts"
|
|
90203
89223
|
]
|
|
90204
89224
|
}
|
|
90205
89225
|
},
|
|
@@ -94162,6 +93182,13 @@
|
|
|
94162
93182
|
"protected"
|
|
94163
93183
|
]
|
|
94164
93184
|
},
|
|
93185
|
+
"EventActivationRewardType": {
|
|
93186
|
+
"type": "string",
|
|
93187
|
+
"enum": [
|
|
93188
|
+
"max",
|
|
93189
|
+
"input"
|
|
93190
|
+
]
|
|
93191
|
+
},
|
|
94165
93192
|
"BaseEventActivation": {
|
|
94166
93193
|
"type": "object",
|
|
94167
93194
|
"properties": {
|
|
@@ -94190,6 +93217,9 @@
|
|
|
94190
93217
|
"type": {
|
|
94191
93218
|
"$ref": "#/components/schemas/EventActivationType"
|
|
94192
93219
|
},
|
|
93220
|
+
"rewardType": {
|
|
93221
|
+
"$ref": "#/components/schemas/EventActivationRewardType"
|
|
93222
|
+
},
|
|
94193
93223
|
"accessLevel": {
|
|
94194
93224
|
"$ref": "#/components/schemas/PassTypeAccessLevel"
|
|
94195
93225
|
},
|
|
@@ -94228,6 +93258,7 @@
|
|
|
94228
93258
|
"maxPoints",
|
|
94229
93259
|
"startAfter",
|
|
94230
93260
|
"type",
|
|
93261
|
+
"rewardType",
|
|
94231
93262
|
"accessLevel",
|
|
94232
93263
|
"sortOrder",
|
|
94233
93264
|
"survey",
|
|
@@ -106958,77 +105989,6 @@
|
|
|
106958
105989
|
}
|
|
106959
105990
|
]
|
|
106960
105991
|
},
|
|
106961
|
-
"ThreadInvitationStatus": {
|
|
106962
|
-
"type": "string",
|
|
106963
|
-
"enum": [
|
|
106964
|
-
"invited",
|
|
106965
|
-
"rejected"
|
|
106966
|
-
]
|
|
106967
|
-
},
|
|
106968
|
-
"ThreadInvitation": {
|
|
106969
|
-
"type": "object",
|
|
106970
|
-
"properties": {
|
|
106971
|
-
"id": {
|
|
106972
|
-
"type": "string"
|
|
106973
|
-
},
|
|
106974
|
-
"organizationId": {
|
|
106975
|
-
"type": "string"
|
|
106976
|
-
},
|
|
106977
|
-
"threadId": {
|
|
106978
|
-
"type": "string"
|
|
106979
|
-
},
|
|
106980
|
-
"thread": {
|
|
106981
|
-
"$ref": "#/components/schemas/BaseThread"
|
|
106982
|
-
},
|
|
106983
|
-
"status": {
|
|
106984
|
-
"$ref": "#/components/schemas/ThreadInvitationStatus"
|
|
106985
|
-
},
|
|
106986
|
-
"role": {
|
|
106987
|
-
"$ref": "#/components/schemas/ThreadMemberRole"
|
|
106988
|
-
},
|
|
106989
|
-
"invitedById": {
|
|
106990
|
-
"type": "string"
|
|
106991
|
-
},
|
|
106992
|
-
"invitedBy": {
|
|
106993
|
-
"$ref": "#/components/schemas/BaseAccount"
|
|
106994
|
-
},
|
|
106995
|
-
"invitedId": {
|
|
106996
|
-
"type": "string"
|
|
106997
|
-
},
|
|
106998
|
-
"invited": {
|
|
106999
|
-
"$ref": "#/components/schemas/BaseAccount"
|
|
107000
|
-
},
|
|
107001
|
-
"createdAt": {
|
|
107002
|
-
"type": "string"
|
|
107003
|
-
},
|
|
107004
|
-
"updatedAt": {
|
|
107005
|
-
"type": "string"
|
|
107006
|
-
}
|
|
107007
|
-
},
|
|
107008
|
-
"required": [
|
|
107009
|
-
"id",
|
|
107010
|
-
"organizationId",
|
|
107011
|
-
"threadId",
|
|
107012
|
-
"thread",
|
|
107013
|
-
"status",
|
|
107014
|
-
"role",
|
|
107015
|
-
"invitedById",
|
|
107016
|
-
"invitedBy",
|
|
107017
|
-
"invitedId",
|
|
107018
|
-
"invited",
|
|
107019
|
-
"createdAt",
|
|
107020
|
-
"updatedAt"
|
|
107021
|
-
]
|
|
107022
|
-
},
|
|
107023
|
-
"ThreadType": {
|
|
107024
|
-
"type": "string",
|
|
107025
|
-
"enum": [
|
|
107026
|
-
"circle",
|
|
107027
|
-
"group",
|
|
107028
|
-
"event",
|
|
107029
|
-
"stream"
|
|
107030
|
-
]
|
|
107031
|
-
},
|
|
107032
105992
|
"BaseThread": {
|
|
107033
105993
|
"type": "object",
|
|
107034
105994
|
"properties": {
|
|
@@ -107050,9 +106010,6 @@
|
|
|
107050
106010
|
],
|
|
107051
106011
|
"nullable": true
|
|
107052
106012
|
},
|
|
107053
|
-
"type": {
|
|
107054
|
-
"$ref": "#/components/schemas/ThreadType"
|
|
107055
|
-
},
|
|
107056
106013
|
"lastMessageAt": {
|
|
107057
106014
|
"type": "string",
|
|
107058
106015
|
"nullable": true
|
|
@@ -107070,26 +106027,89 @@
|
|
|
107070
106027
|
"subject",
|
|
107071
106028
|
"imageId",
|
|
107072
106029
|
"image",
|
|
107073
|
-
"type",
|
|
107074
106030
|
"lastMessageAt",
|
|
107075
106031
|
"lastMessage",
|
|
107076
106032
|
"createdAt"
|
|
107077
106033
|
]
|
|
107078
106034
|
},
|
|
106035
|
+
"ThreadAccount": {
|
|
106036
|
+
"type": "object",
|
|
106037
|
+
"properties": {
|
|
106038
|
+
"id": {
|
|
106039
|
+
"type": "string"
|
|
106040
|
+
},
|
|
106041
|
+
"threadId": {
|
|
106042
|
+
"type": "string"
|
|
106043
|
+
},
|
|
106044
|
+
"accountId": {
|
|
106045
|
+
"type": "string"
|
|
106046
|
+
},
|
|
106047
|
+
"account": {
|
|
106048
|
+
"$ref": "#/components/schemas/BaseAccount"
|
|
106049
|
+
},
|
|
106050
|
+
"lastReadAt": {
|
|
106051
|
+
"type": "string",
|
|
106052
|
+
"nullable": true
|
|
106053
|
+
},
|
|
106054
|
+
"typingAt": {
|
|
106055
|
+
"type": "string",
|
|
106056
|
+
"nullable": true
|
|
106057
|
+
},
|
|
106058
|
+
"notifications": {
|
|
106059
|
+
"type": "boolean"
|
|
106060
|
+
},
|
|
106061
|
+
"blocked": {
|
|
106062
|
+
"type": "boolean"
|
|
106063
|
+
},
|
|
106064
|
+
"createdAt": {
|
|
106065
|
+
"type": "string"
|
|
106066
|
+
},
|
|
106067
|
+
"updatedAt": {
|
|
106068
|
+
"type": "string"
|
|
106069
|
+
}
|
|
106070
|
+
},
|
|
106071
|
+
"required": [
|
|
106072
|
+
"id",
|
|
106073
|
+
"threadId",
|
|
106074
|
+
"accountId",
|
|
106075
|
+
"account",
|
|
106076
|
+
"lastReadAt",
|
|
106077
|
+
"typingAt",
|
|
106078
|
+
"notifications",
|
|
106079
|
+
"blocked",
|
|
106080
|
+
"createdAt",
|
|
106081
|
+
"updatedAt"
|
|
106082
|
+
]
|
|
106083
|
+
},
|
|
107079
106084
|
"Thread": {
|
|
107080
106085
|
"allOf": [
|
|
107081
106086
|
{
|
|
107082
106087
|
"$ref": "#/components/schemas/BaseThread"
|
|
106088
|
+
},
|
|
106089
|
+
{
|
|
106090
|
+
"type": "object",
|
|
106091
|
+
"properties": {
|
|
106092
|
+
"accounts": {
|
|
106093
|
+
"type": "array",
|
|
106094
|
+
"items": {
|
|
106095
|
+
"$ref": "#/components/schemas/ThreadAccount"
|
|
106096
|
+
}
|
|
106097
|
+
},
|
|
106098
|
+
"_count": {
|
|
106099
|
+
"type": "object",
|
|
106100
|
+
"properties": {
|
|
106101
|
+
"messages": {
|
|
106102
|
+
"type": "number"
|
|
106103
|
+
}
|
|
106104
|
+
}
|
|
106105
|
+
}
|
|
106106
|
+
},
|
|
106107
|
+
"required": [
|
|
106108
|
+
"accounts"
|
|
106109
|
+
]
|
|
107083
106110
|
}
|
|
107084
106111
|
]
|
|
107085
106112
|
},
|
|
107086
|
-
"ThreadMemberRole": {
|
|
107087
|
-
"type": "string",
|
|
107088
|
-
"enum": [
|
|
107089
|
-
"member",
|
|
107090
|
-
"moderator"
|
|
107091
|
-
]
|
|
107092
|
-
},
|
|
107093
106113
|
"ThreadMessageType": {
|
|
107094
106114
|
"type": "string",
|
|
107095
106115
|
"enum": [
|
|
@@ -107159,6 +106179,33 @@
|
|
|
107159
106179
|
}
|
|
107160
106180
|
]
|
|
107161
106181
|
},
|
|
106182
|
+
"ThreadMessageRead": {
|
|
106183
|
+
"type": "object",
|
|
106184
|
+
"properties": {
|
|
106185
|
+
"id": {
|
|
106186
|
+
"type": "string"
|
|
106187
|
+
},
|
|
106188
|
+
"threadId": {
|
|
106189
|
+
"type": "string"
|
|
106190
|
+
},
|
|
106191
|
+
"messageId": {
|
|
106192
|
+
"type": "string"
|
|
106193
|
+
},
|
|
106194
|
+
"accountId": {
|
|
106195
|
+
"type": "string"
|
|
106196
|
+
},
|
|
106197
|
+
"readAt": {
|
|
106198
|
+
"type": "string"
|
|
106199
|
+
}
|
|
106200
|
+
},
|
|
106201
|
+
"required": [
|
|
106202
|
+
"id",
|
|
106203
|
+
"threadId",
|
|
106204
|
+
"messageId",
|
|
106205
|
+
"accountId",
|
|
106206
|
+
"readAt"
|
|
106207
|
+
]
|
|
106208
|
+
},
|
|
107162
106209
|
"BaseThreadMessage": {
|
|
107163
106210
|
"type": "object",
|
|
107164
106211
|
"properties": {
|
|
@@ -107172,10 +106219,10 @@
|
|
|
107172
106219
|
"type": "string",
|
|
107173
106220
|
"nullable": true
|
|
107174
106221
|
},
|
|
107175
|
-
"
|
|
106222
|
+
"threadAccount": {
|
|
107176
106223
|
"allOf": [
|
|
107177
106224
|
{
|
|
107178
|
-
"$ref": "#/components/schemas/
|
|
106225
|
+
"$ref": "#/components/schemas/ThreadAccount"
|
|
107179
106226
|
}
|
|
107180
106227
|
],
|
|
107181
106228
|
"nullable": true
|
|
@@ -107189,13 +106236,17 @@
|
|
|
107189
106236
|
},
|
|
107190
106237
|
"sentAt": {
|
|
107191
106238
|
"type": "string"
|
|
106239
|
+
},
|
|
106240
|
+
"deletedAt": {
|
|
106241
|
+
"type": "string",
|
|
106242
|
+
"nullable": true
|
|
107192
106243
|
}
|
|
107193
106244
|
},
|
|
107194
106245
|
"required": [
|
|
107195
106246
|
"id",
|
|
107196
106247
|
"body",
|
|
107197
106248
|
"accountId",
|
|
107198
|
-
"
|
|
106249
|
+
"threadAccount",
|
|
107199
106250
|
"createdAt",
|
|
107200
106251
|
"editedAt",
|
|
107201
106252
|
"sentAt"
|
|
@@ -107253,6 +106304,16 @@
|
|
|
107253
106304
|
"items": {
|
|
107254
106305
|
"$ref": "#/components/schemas/BaseVideo"
|
|
107255
106306
|
}
|
|
106307
|
+
},
|
|
106308
|
+
"reads": {
|
|
106309
|
+
"type": "array",
|
|
106310
|
+
"items": {
|
|
106311
|
+
"$ref": "#/components/schemas/ThreadMessageRead"
|
|
106312
|
+
}
|
|
106313
|
+
},
|
|
106314
|
+
"deletedAt": {
|
|
106315
|
+
"type": "string",
|
|
106316
|
+
"nullable": true
|
|
107256
106317
|
}
|
|
107257
106318
|
},
|
|
107258
106319
|
"required": [
|
|
@@ -107313,135 +106374,6 @@
|
|
|
107313
106374
|
}
|
|
107314
106375
|
]
|
|
107315
106376
|
},
|
|
107316
|
-
"BaseThreadMember": {
|
|
107317
|
-
"type": "object",
|
|
107318
|
-
"properties": {
|
|
107319
|
-
"id": {
|
|
107320
|
-
"type": "string"
|
|
107321
|
-
},
|
|
107322
|
-
"accountId": {
|
|
107323
|
-
"type": "string"
|
|
107324
|
-
},
|
|
107325
|
-
"lastReadAt": {
|
|
107326
|
-
"type": "string",
|
|
107327
|
-
"nullable": true
|
|
107328
|
-
},
|
|
107329
|
-
"notifications": {
|
|
107330
|
-
"type": "boolean"
|
|
107331
|
-
},
|
|
107332
|
-
"account": {
|
|
107333
|
-
"$ref": "#/components/schemas/BaseAccount"
|
|
107334
|
-
},
|
|
107335
|
-
"blocked": {
|
|
107336
|
-
"type": "boolean"
|
|
107337
|
-
}
|
|
107338
|
-
},
|
|
107339
|
-
"required": [
|
|
107340
|
-
"id",
|
|
107341
|
-
"accountId",
|
|
107342
|
-
"lastReadAt",
|
|
107343
|
-
"notifications",
|
|
107344
|
-
"account",
|
|
107345
|
-
"blocked"
|
|
107346
|
-
]
|
|
107347
|
-
},
|
|
107348
|
-
"ThreadMember": {
|
|
107349
|
-
"allOf": [
|
|
107350
|
-
{
|
|
107351
|
-
"$ref": "#/components/schemas/BaseThreadMember"
|
|
107352
|
-
},
|
|
107353
|
-
{
|
|
107354
|
-
"type": "object",
|
|
107355
|
-
"properties": {
|
|
107356
|
-
"createdAt": {
|
|
107357
|
-
"type": "string"
|
|
107358
|
-
},
|
|
107359
|
-
"updatedAt": {
|
|
107360
|
-
"type": "string"
|
|
107361
|
-
}
|
|
107362
|
-
},
|
|
107363
|
-
"required": [
|
|
107364
|
-
"createdAt",
|
|
107365
|
-
"updatedAt"
|
|
107366
|
-
]
|
|
107367
|
-
}
|
|
107368
|
-
]
|
|
107369
|
-
},
|
|
107370
|
-
"ThreadCircleAccountRole": {
|
|
107371
|
-
"type": "string",
|
|
107372
|
-
"enum": [
|
|
107373
|
-
"member",
|
|
107374
|
-
"manager",
|
|
107375
|
-
"invited"
|
|
107376
|
-
]
|
|
107377
|
-
},
|
|
107378
|
-
"ThreadCircleType": {
|
|
107379
|
-
"type": "string",
|
|
107380
|
-
"enum": [
|
|
107381
|
-
"private",
|
|
107382
|
-
"direct"
|
|
107383
|
-
]
|
|
107384
|
-
},
|
|
107385
|
-
"BaseThreadCircle": {
|
|
107386
|
-
"type": "object",
|
|
107387
|
-
"properties": {
|
|
107388
|
-
"id": {
|
|
107389
|
-
"type": "string"
|
|
107390
|
-
},
|
|
107391
|
-
"name": {
|
|
107392
|
-
"type": "string"
|
|
107393
|
-
},
|
|
107394
|
-
"createdAt": {
|
|
107395
|
-
"type": "string"
|
|
107396
|
-
},
|
|
107397
|
-
"updatedAt": {
|
|
107398
|
-
"type": "string"
|
|
107399
|
-
},
|
|
107400
|
-
"type": {
|
|
107401
|
-
"$ref": "#/components/schemas/ThreadCircleType"
|
|
107402
|
-
}
|
|
107403
|
-
},
|
|
107404
|
-
"required": [
|
|
107405
|
-
"id",
|
|
107406
|
-
"name",
|
|
107407
|
-
"createdAt",
|
|
107408
|
-
"updatedAt",
|
|
107409
|
-
"type"
|
|
107410
|
-
]
|
|
107411
|
-
},
|
|
107412
|
-
"ThreadCircle": {
|
|
107413
|
-
"allOf": [
|
|
107414
|
-
{
|
|
107415
|
-
"$ref": "#/components/schemas/BaseThreadCircle"
|
|
107416
|
-
}
|
|
107417
|
-
]
|
|
107418
|
-
},
|
|
107419
|
-
"BaseThreadCircleAccount": {
|
|
107420
|
-
"type": "object",
|
|
107421
|
-
"properties": {
|
|
107422
|
-
"accountId": {
|
|
107423
|
-
"type": "string"
|
|
107424
|
-
},
|
|
107425
|
-
"role": {
|
|
107426
|
-
"$ref": "#/components/schemas/ThreadCircleAccountRole"
|
|
107427
|
-
},
|
|
107428
|
-
"account": {
|
|
107429
|
-
"$ref": "#/components/schemas/BaseAccount"
|
|
107430
|
-
}
|
|
107431
|
-
},
|
|
107432
|
-
"required": [
|
|
107433
|
-
"accountId",
|
|
107434
|
-
"role",
|
|
107435
|
-
"account"
|
|
107436
|
-
]
|
|
107437
|
-
},
|
|
107438
|
-
"ThreadCircleAccount": {
|
|
107439
|
-
"allOf": [
|
|
107440
|
-
{
|
|
107441
|
-
"$ref": "#/components/schemas/BaseThreadCircleAccount"
|
|
107442
|
-
}
|
|
107443
|
-
]
|
|
107444
|
-
},
|
|
107445
106377
|
"PaypalActivationFormParams": {
|
|
107446
106378
|
"type": "object",
|
|
107447
106379
|
"properties": {
|
|
@@ -114055,6 +112987,9 @@
|
|
|
114055
112987
|
"type": {
|
|
114056
112988
|
"$ref": "#/components/schemas/EventActivationType"
|
|
114057
112989
|
},
|
|
112990
|
+
"rewardType": {
|
|
112991
|
+
"$ref": "#/components/schemas/EventActivationRewardType"
|
|
112992
|
+
},
|
|
114058
112993
|
"protectionCode": {
|
|
114059
112994
|
"oneOf": [
|
|
114060
112995
|
{
|
|
@@ -114167,6 +113102,9 @@
|
|
|
114167
113102
|
"type": {
|
|
114168
113103
|
"$ref": "#/components/schemas/EventActivationType"
|
|
114169
113104
|
},
|
|
113105
|
+
"rewardType": {
|
|
113106
|
+
"$ref": "#/components/schemas/EventActivationRewardType"
|
|
113107
|
+
},
|
|
114170
113108
|
"protectionCode": {
|
|
114171
113109
|
"oneOf": [
|
|
114172
113110
|
{
|
|
@@ -119184,6 +118122,12 @@
|
|
|
119184
118122
|
"ThreadCreateInputs": {
|
|
119185
118123
|
"type": "object",
|
|
119186
118124
|
"properties": {
|
|
118125
|
+
"accountIds": {
|
|
118126
|
+
"type": "array",
|
|
118127
|
+
"items": {
|
|
118128
|
+
"type": "string"
|
|
118129
|
+
}
|
|
118130
|
+
},
|
|
119187
118131
|
"subject": {
|
|
119188
118132
|
"type": "string",
|
|
119189
118133
|
"nullable": true
|
|
@@ -119191,17 +118135,11 @@
|
|
|
119191
118135
|
"imageId": {
|
|
119192
118136
|
"type": "string",
|
|
119193
118137
|
"nullable": true
|
|
119194
|
-
},
|
|
119195
|
-
"groupId": {
|
|
119196
|
-
"type": "string"
|
|
119197
|
-
},
|
|
119198
|
-
"circleId": {
|
|
119199
|
-
"type": "string"
|
|
119200
|
-
},
|
|
119201
|
-
"eventId": {
|
|
119202
|
-
"type": "string"
|
|
119203
118138
|
}
|
|
119204
|
-
}
|
|
118139
|
+
},
|
|
118140
|
+
"required": [
|
|
118141
|
+
"accountIds"
|
|
118142
|
+
]
|
|
119205
118143
|
},
|
|
119206
118144
|
"ThreadUpdateInputs": {
|
|
119207
118145
|
"type": "object",
|
|
@@ -119256,63 +118194,14 @@
|
|
|
119256
118194
|
"entities"
|
|
119257
118195
|
]
|
|
119258
118196
|
},
|
|
119259
|
-
"
|
|
119260
|
-
"type": "object",
|
|
119261
|
-
"properties": {}
|
|
119262
|
-
},
|
|
119263
|
-
"ThreadMemberUpdateInputs": {
|
|
118197
|
+
"ThreadAccountUpdateInputs": {
|
|
119264
118198
|
"type": "object",
|
|
119265
118199
|
"properties": {
|
|
119266
|
-
"
|
|
118200
|
+
"notifications": {
|
|
119267
118201
|
"type": "boolean"
|
|
119268
|
-
}
|
|
119269
|
-
}
|
|
119270
|
-
},
|
|
119271
|
-
"ThreadCircleCreateInputs": {
|
|
119272
|
-
"type": "object",
|
|
119273
|
-
"properties": {
|
|
119274
|
-
"name": {
|
|
119275
|
-
"type": "string"
|
|
119276
|
-
}
|
|
119277
|
-
},
|
|
119278
|
-
"required": [
|
|
119279
|
-
"name"
|
|
119280
|
-
]
|
|
119281
|
-
},
|
|
119282
|
-
"ThreadCircleUpdateInputs": {
|
|
119283
|
-
"type": "object",
|
|
119284
|
-
"properties": {
|
|
119285
|
-
"name": {
|
|
119286
|
-
"type": "string",
|
|
119287
|
-
"nullable": true
|
|
119288
|
-
}
|
|
119289
|
-
}
|
|
119290
|
-
},
|
|
119291
|
-
"ThreadCircleAccountCreateInputs": {
|
|
119292
|
-
"type": "object",
|
|
119293
|
-
"properties": {
|
|
119294
|
-
"accountId": {
|
|
119295
|
-
"type": "string"
|
|
119296
118202
|
},
|
|
119297
|
-
"
|
|
119298
|
-
"
|
|
119299
|
-
}
|
|
119300
|
-
},
|
|
119301
|
-
"required": [
|
|
119302
|
-
"accountId",
|
|
119303
|
-
"role"
|
|
119304
|
-
]
|
|
119305
|
-
},
|
|
119306
|
-
"ThreadCircleAccountUpdateInputs": {
|
|
119307
|
-
"type": "object",
|
|
119308
|
-
"properties": {
|
|
119309
|
-
"role": {
|
|
119310
|
-
"allOf": [
|
|
119311
|
-
{
|
|
119312
|
-
"$ref": "#/components/schemas/ThreadCircleAccountRole"
|
|
119313
|
-
}
|
|
119314
|
-
],
|
|
119315
|
-
"nullable": true
|
|
118203
|
+
"blocked": {
|
|
118204
|
+
"type": "boolean"
|
|
119316
118205
|
}
|
|
119317
118206
|
}
|
|
119318
118207
|
},
|