@37signals/basecamp 0.3.0 → 0.5.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/dist/client.d.ts +1 -1
- package/dist/client.js +1 -1
- package/dist/generated/metadata.json +17 -1
- package/dist/generated/openapi-stripped.json +867 -197
- package/dist/generated/path-mapping.js +1 -1
- package/dist/generated/path-mapping.js.map +1 -1
- package/dist/generated/path-mapping.ts +1 -1
- package/dist/generated/schema.d.ts +7 -2
- package/dist/generated/services/messages.d.ts +7 -0
- package/dist/generated/services/messages.d.ts.map +1 -1
- package/dist/generated/services/messages.js +4 -0
- package/dist/generated/services/messages.js.map +1 -1
- package/dist/generated/services/messages.ts +8 -0
- package/dist/generated/services/reports.d.ts +18 -4
- package/dist/generated/services/reports.d.ts.map +1 -1
- package/dist/generated/services/reports.js +7 -7
- package/dist/generated/services/reports.js.map +1 -1
- package/dist/generated/services/reports.ts +19 -8
- package/dist/generated/services/timeline.d.ts +5 -2
- package/dist/generated/services/timeline.d.ts.map +1 -1
- package/dist/generated/services/timeline.js +1 -1
- package/dist/generated/services/timeline.js.map +1 -1
- package/dist/generated/services/timeline.ts +4 -2
- package/dist/generated/services/timesheets.d.ts +18 -14
- package/dist/generated/services/timesheets.d.ts.map +1 -1
- package/dist/generated/services/timesheets.js +10 -12
- package/dist/generated/services/timesheets.js.map +1 -1
- package/dist/generated/services/timesheets.ts +22 -18
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/services/base.d.ts +13 -0
- package/dist/services/base.d.ts.map +1 -1
- package/dist/services/base.js +97 -0
- package/dist/services/base.js.map +1 -1
- package/package.json +2 -2
- package/src/generated/metadata.json +17 -1
- package/src/generated/openapi-stripped.json +867 -197
- package/src/generated/path-mapping.ts +1 -1
- package/src/generated/schema.d.ts +7 -2
- package/src/generated/services/messages.ts +8 -0
- package/src/generated/services/reports.ts +19 -8
- package/src/generated/services/timeline.ts +4 -2
- package/src/generated/services/timesheets.ts +22 -18
|
@@ -5974,6 +5974,24 @@
|
|
|
5974
5974
|
"format": "int64"
|
|
5975
5975
|
},
|
|
5976
5976
|
"required": true
|
|
5977
|
+
},
|
|
5978
|
+
{
|
|
5979
|
+
"name": "sort",
|
|
5980
|
+
"in": "query",
|
|
5981
|
+
"description": "created_at|updated_at",
|
|
5982
|
+
"schema": {
|
|
5983
|
+
"type": "string",
|
|
5984
|
+
"description": "created_at|updated_at"
|
|
5985
|
+
}
|
|
5986
|
+
},
|
|
5987
|
+
{
|
|
5988
|
+
"name": "direction",
|
|
5989
|
+
"in": "query",
|
|
5990
|
+
"description": "asc|desc",
|
|
5991
|
+
"schema": {
|
|
5992
|
+
"type": "string",
|
|
5993
|
+
"description": "asc|desc"
|
|
5994
|
+
}
|
|
5977
5995
|
}
|
|
5978
5996
|
],
|
|
5979
5997
|
"responses": {
|
|
@@ -7667,6 +7685,11 @@
|
|
|
7667
7685
|
"tags": [
|
|
7668
7686
|
"Schedule"
|
|
7669
7687
|
],
|
|
7688
|
+
"x-basecamp-pagination": {
|
|
7689
|
+
"style": "link",
|
|
7690
|
+
"totalCountHeader": "X-Total-Count",
|
|
7691
|
+
"maxPageSize": 50
|
|
7692
|
+
},
|
|
7670
7693
|
"x-basecamp-retry": {
|
|
7671
7694
|
"maxAttempts": 3,
|
|
7672
7695
|
"baseDelayMs": 1000,
|
|
@@ -10704,6 +10727,11 @@
|
|
|
10704
10727
|
"tags": [
|
|
10705
10728
|
"Schedule"
|
|
10706
10729
|
],
|
|
10730
|
+
"x-basecamp-pagination": {
|
|
10731
|
+
"style": "link",
|
|
10732
|
+
"totalCountHeader": "X-Total-Count",
|
|
10733
|
+
"maxPageSize": 50
|
|
10734
|
+
},
|
|
10707
10735
|
"x-basecamp-retry": {
|
|
10708
10736
|
"maxAttempts": 3,
|
|
10709
10737
|
"baseDelayMs": 1000,
|
|
@@ -11553,7 +11581,7 @@
|
|
|
11553
11581
|
}
|
|
11554
11582
|
}
|
|
11555
11583
|
},
|
|
11556
|
-
"/reports/users/progress/{personId}": {
|
|
11584
|
+
"/reports/users/progress/{personId}.json": {
|
|
11557
11585
|
"get": {
|
|
11558
11586
|
"description": "Get a person's activity timeline",
|
|
11559
11587
|
"operationId": "GetPersonProgress",
|
|
@@ -11630,6 +11658,12 @@
|
|
|
11630
11658
|
}
|
|
11631
11659
|
}
|
|
11632
11660
|
},
|
|
11661
|
+
"x-basecamp-pagination": {
|
|
11662
|
+
"style": "link",
|
|
11663
|
+
"totalCountHeader": "X-Total-Count",
|
|
11664
|
+
"maxPageSize": 50,
|
|
11665
|
+
"key": "events"
|
|
11666
|
+
},
|
|
11633
11667
|
"x-basecamp-retry": {
|
|
11634
11668
|
"maxAttempts": 3,
|
|
11635
11669
|
"baseDelayMs": 1000,
|
|
@@ -16084,7 +16118,8 @@
|
|
|
16084
16118
|
"properties": {
|
|
16085
16119
|
"id": {
|
|
16086
16120
|
"type": "integer",
|
|
16087
|
-
"format": "int64"
|
|
16121
|
+
"format": "int64",
|
|
16122
|
+
"x-go-type-skip-optional-pointer": false
|
|
16088
16123
|
},
|
|
16089
16124
|
"title": {
|
|
16090
16125
|
"type": "string"
|
|
@@ -16105,10 +16140,20 @@
|
|
|
16105
16140
|
"$ref": "#/components/schemas/TodoParent"
|
|
16106
16141
|
},
|
|
16107
16142
|
"due_on": {
|
|
16108
|
-
"type": "string"
|
|
16143
|
+
"type": "string",
|
|
16144
|
+
"x-go-type": "types.Date",
|
|
16145
|
+
"x-go-type-import": {
|
|
16146
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
16147
|
+
},
|
|
16148
|
+
"x-go-type-skip-optional-pointer": true
|
|
16109
16149
|
},
|
|
16110
16150
|
"starts_on": {
|
|
16111
|
-
"type": "string"
|
|
16151
|
+
"type": "string",
|
|
16152
|
+
"x-go-type": "types.Date",
|
|
16153
|
+
"x-go-type-import": {
|
|
16154
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
16155
|
+
},
|
|
16156
|
+
"x-go-type-skip-optional-pointer": true
|
|
16112
16157
|
},
|
|
16113
16158
|
"assignees": {
|
|
16114
16159
|
"type": "array",
|
|
@@ -16137,13 +16182,19 @@
|
|
|
16137
16182
|
"properties": {
|
|
16138
16183
|
"id": {
|
|
16139
16184
|
"type": "integer",
|
|
16140
|
-
"format": "int64"
|
|
16185
|
+
"format": "int64",
|
|
16186
|
+
"x-go-type-skip-optional-pointer": false
|
|
16141
16187
|
},
|
|
16142
16188
|
"content": {
|
|
16143
16189
|
"type": "string"
|
|
16144
16190
|
},
|
|
16145
16191
|
"created_at": {
|
|
16146
|
-
"type": "string"
|
|
16192
|
+
"type": "string",
|
|
16193
|
+
"x-go-type": "time.Time",
|
|
16194
|
+
"x-go-type-import": {
|
|
16195
|
+
"path": "time"
|
|
16196
|
+
},
|
|
16197
|
+
"x-go-type-skip-optional-pointer": true
|
|
16147
16198
|
},
|
|
16148
16199
|
"booster": {
|
|
16149
16200
|
"$ref": "#/components/schemas/Person"
|
|
@@ -16162,7 +16213,8 @@
|
|
|
16162
16213
|
"properties": {
|
|
16163
16214
|
"id": {
|
|
16164
16215
|
"type": "integer",
|
|
16165
|
-
"format": "int64"
|
|
16216
|
+
"format": "int64",
|
|
16217
|
+
"x-go-type-skip-optional-pointer": false
|
|
16166
16218
|
},
|
|
16167
16219
|
"status": {
|
|
16168
16220
|
"type": "string"
|
|
@@ -16171,10 +16223,20 @@
|
|
|
16171
16223
|
"type": "boolean"
|
|
16172
16224
|
},
|
|
16173
16225
|
"created_at": {
|
|
16174
|
-
"type": "string"
|
|
16226
|
+
"type": "string",
|
|
16227
|
+
"x-go-type": "time.Time",
|
|
16228
|
+
"x-go-type-import": {
|
|
16229
|
+
"path": "time"
|
|
16230
|
+
},
|
|
16231
|
+
"x-go-type-skip-optional-pointer": true
|
|
16175
16232
|
},
|
|
16176
16233
|
"updated_at": {
|
|
16177
|
-
"type": "string"
|
|
16234
|
+
"type": "string",
|
|
16235
|
+
"x-go-type": "time.Time",
|
|
16236
|
+
"x-go-type-import": {
|
|
16237
|
+
"path": "time"
|
|
16238
|
+
},
|
|
16239
|
+
"x-go-type-skip-optional-pointer": true
|
|
16178
16240
|
},
|
|
16179
16241
|
"title": {
|
|
16180
16242
|
"type": "string"
|
|
@@ -16237,7 +16299,8 @@
|
|
|
16237
16299
|
"properties": {
|
|
16238
16300
|
"id": {
|
|
16239
16301
|
"type": "integer",
|
|
16240
|
-
"format": "int64"
|
|
16302
|
+
"format": "int64",
|
|
16303
|
+
"x-go-type-skip-optional-pointer": false
|
|
16241
16304
|
},
|
|
16242
16305
|
"status": {
|
|
16243
16306
|
"type": "string"
|
|
@@ -16246,10 +16309,20 @@
|
|
|
16246
16309
|
"type": "boolean"
|
|
16247
16310
|
},
|
|
16248
16311
|
"created_at": {
|
|
16249
|
-
"type": "string"
|
|
16312
|
+
"type": "string",
|
|
16313
|
+
"x-go-type": "time.Time",
|
|
16314
|
+
"x-go-type-import": {
|
|
16315
|
+
"path": "time"
|
|
16316
|
+
},
|
|
16317
|
+
"x-go-type-skip-optional-pointer": true
|
|
16250
16318
|
},
|
|
16251
16319
|
"updated_at": {
|
|
16252
|
-
"type": "string"
|
|
16320
|
+
"type": "string",
|
|
16321
|
+
"x-go-type": "time.Time",
|
|
16322
|
+
"x-go-type-import": {
|
|
16323
|
+
"path": "time"
|
|
16324
|
+
},
|
|
16325
|
+
"x-go-type-skip-optional-pointer": true
|
|
16253
16326
|
},
|
|
16254
16327
|
"title": {
|
|
16255
16328
|
"type": "string"
|
|
@@ -16340,7 +16413,8 @@
|
|
|
16340
16413
|
"properties": {
|
|
16341
16414
|
"id": {
|
|
16342
16415
|
"type": "integer",
|
|
16343
|
-
"format": "int64"
|
|
16416
|
+
"format": "int64",
|
|
16417
|
+
"x-go-type-skip-optional-pointer": false
|
|
16344
16418
|
},
|
|
16345
16419
|
"status": {
|
|
16346
16420
|
"type": "string"
|
|
@@ -16349,10 +16423,20 @@
|
|
|
16349
16423
|
"type": "boolean"
|
|
16350
16424
|
},
|
|
16351
16425
|
"created_at": {
|
|
16352
|
-
"type": "string"
|
|
16426
|
+
"type": "string",
|
|
16427
|
+
"x-go-type": "time.Time",
|
|
16428
|
+
"x-go-type-import": {
|
|
16429
|
+
"path": "time"
|
|
16430
|
+
},
|
|
16431
|
+
"x-go-type-skip-optional-pointer": true
|
|
16353
16432
|
},
|
|
16354
16433
|
"updated_at": {
|
|
16355
|
-
"type": "string"
|
|
16434
|
+
"type": "string",
|
|
16435
|
+
"x-go-type": "time.Time",
|
|
16436
|
+
"x-go-type-import": {
|
|
16437
|
+
"path": "time"
|
|
16438
|
+
},
|
|
16439
|
+
"x-go-type-skip-optional-pointer": true
|
|
16356
16440
|
},
|
|
16357
16441
|
"title": {
|
|
16358
16442
|
"type": "string"
|
|
@@ -16386,13 +16470,23 @@
|
|
|
16386
16470
|
"type": "string"
|
|
16387
16471
|
},
|
|
16388
16472
|
"due_on": {
|
|
16389
|
-
"type": "string"
|
|
16473
|
+
"type": "string",
|
|
16474
|
+
"x-go-type": "types.Date",
|
|
16475
|
+
"x-go-type-import": {
|
|
16476
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
16477
|
+
},
|
|
16478
|
+
"x-go-type-skip-optional-pointer": true
|
|
16390
16479
|
},
|
|
16391
16480
|
"completed": {
|
|
16392
16481
|
"type": "boolean"
|
|
16393
16482
|
},
|
|
16394
16483
|
"completed_at": {
|
|
16395
|
-
"type": "string"
|
|
16484
|
+
"type": "string",
|
|
16485
|
+
"x-go-type": "time.Time",
|
|
16486
|
+
"x-go-type-import": {
|
|
16487
|
+
"path": "time"
|
|
16488
|
+
},
|
|
16489
|
+
"x-go-type-skip-optional-pointer": true
|
|
16396
16490
|
},
|
|
16397
16491
|
"comments_count": {
|
|
16398
16492
|
"type": "integer",
|
|
@@ -16463,7 +16557,8 @@
|
|
|
16463
16557
|
"properties": {
|
|
16464
16558
|
"id": {
|
|
16465
16559
|
"type": "integer",
|
|
16466
|
-
"format": "int64"
|
|
16560
|
+
"format": "int64",
|
|
16561
|
+
"x-go-type-skip-optional-pointer": false
|
|
16467
16562
|
},
|
|
16468
16563
|
"status": {
|
|
16469
16564
|
"type": "string"
|
|
@@ -16472,10 +16567,20 @@
|
|
|
16472
16567
|
"type": "boolean"
|
|
16473
16568
|
},
|
|
16474
16569
|
"created_at": {
|
|
16475
|
-
"type": "string"
|
|
16570
|
+
"type": "string",
|
|
16571
|
+
"x-go-type": "time.Time",
|
|
16572
|
+
"x-go-type-import": {
|
|
16573
|
+
"path": "time"
|
|
16574
|
+
},
|
|
16575
|
+
"x-go-type-skip-optional-pointer": true
|
|
16476
16576
|
},
|
|
16477
16577
|
"updated_at": {
|
|
16478
|
-
"type": "string"
|
|
16578
|
+
"type": "string",
|
|
16579
|
+
"x-go-type": "time.Time",
|
|
16580
|
+
"x-go-type-import": {
|
|
16581
|
+
"path": "time"
|
|
16582
|
+
},
|
|
16583
|
+
"x-go-type-skip-optional-pointer": true
|
|
16479
16584
|
},
|
|
16480
16585
|
"title": {
|
|
16481
16586
|
"type": "string"
|
|
@@ -16553,7 +16658,8 @@
|
|
|
16553
16658
|
"properties": {
|
|
16554
16659
|
"id": {
|
|
16555
16660
|
"type": "integer",
|
|
16556
|
-
"format": "int64"
|
|
16661
|
+
"format": "int64",
|
|
16662
|
+
"x-go-type-skip-optional-pointer": false
|
|
16557
16663
|
},
|
|
16558
16664
|
"status": {
|
|
16559
16665
|
"type": "string"
|
|
@@ -16562,10 +16668,20 @@
|
|
|
16562
16668
|
"type": "boolean"
|
|
16563
16669
|
},
|
|
16564
16670
|
"created_at": {
|
|
16565
|
-
"type": "string"
|
|
16671
|
+
"type": "string",
|
|
16672
|
+
"x-go-type": "time.Time",
|
|
16673
|
+
"x-go-type-import": {
|
|
16674
|
+
"path": "time"
|
|
16675
|
+
},
|
|
16676
|
+
"x-go-type-skip-optional-pointer": true
|
|
16566
16677
|
},
|
|
16567
16678
|
"updated_at": {
|
|
16568
|
-
"type": "string"
|
|
16679
|
+
"type": "string",
|
|
16680
|
+
"x-go-type": "time.Time",
|
|
16681
|
+
"x-go-type-import": {
|
|
16682
|
+
"path": "time"
|
|
16683
|
+
},
|
|
16684
|
+
"x-go-type-skip-optional-pointer": true
|
|
16569
16685
|
},
|
|
16570
16686
|
"title": {
|
|
16571
16687
|
"type": "string"
|
|
@@ -16590,13 +16706,23 @@
|
|
|
16590
16706
|
"format": "int32"
|
|
16591
16707
|
},
|
|
16592
16708
|
"due_on": {
|
|
16593
|
-
"type": "string"
|
|
16709
|
+
"type": "string",
|
|
16710
|
+
"x-go-type": "types.Date",
|
|
16711
|
+
"x-go-type-import": {
|
|
16712
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
16713
|
+
},
|
|
16714
|
+
"x-go-type-skip-optional-pointer": true
|
|
16594
16715
|
},
|
|
16595
16716
|
"completed": {
|
|
16596
16717
|
"type": "boolean"
|
|
16597
16718
|
},
|
|
16598
16719
|
"completed_at": {
|
|
16599
|
-
"type": "string"
|
|
16720
|
+
"type": "string",
|
|
16721
|
+
"x-go-type": "time.Time",
|
|
16722
|
+
"x-go-type-import": {
|
|
16723
|
+
"path": "time"
|
|
16724
|
+
},
|
|
16725
|
+
"x-go-type-skip-optional-pointer": true
|
|
16600
16726
|
},
|
|
16601
16727
|
"parent": {
|
|
16602
16728
|
"$ref": "#/components/schemas/RecordingParent"
|
|
@@ -16641,7 +16767,8 @@
|
|
|
16641
16767
|
"properties": {
|
|
16642
16768
|
"id": {
|
|
16643
16769
|
"type": "integer",
|
|
16644
|
-
"format": "int64"
|
|
16770
|
+
"format": "int64",
|
|
16771
|
+
"x-go-type-skip-optional-pointer": false
|
|
16645
16772
|
},
|
|
16646
16773
|
"status": {
|
|
16647
16774
|
"type": "string"
|
|
@@ -16650,10 +16777,20 @@
|
|
|
16650
16777
|
"type": "boolean"
|
|
16651
16778
|
},
|
|
16652
16779
|
"created_at": {
|
|
16653
|
-
"type": "string"
|
|
16780
|
+
"type": "string",
|
|
16781
|
+
"x-go-type": "time.Time",
|
|
16782
|
+
"x-go-type-import": {
|
|
16783
|
+
"path": "time"
|
|
16784
|
+
},
|
|
16785
|
+
"x-go-type-skip-optional-pointer": true
|
|
16654
16786
|
},
|
|
16655
16787
|
"updated_at": {
|
|
16656
|
-
"type": "string"
|
|
16788
|
+
"type": "string",
|
|
16789
|
+
"x-go-type": "time.Time",
|
|
16790
|
+
"x-go-type-import": {
|
|
16791
|
+
"path": "time"
|
|
16792
|
+
},
|
|
16793
|
+
"x-go-type-skip-optional-pointer": true
|
|
16657
16794
|
},
|
|
16658
16795
|
"title": {
|
|
16659
16796
|
"type": "string"
|
|
@@ -16715,13 +16852,24 @@
|
|
|
16715
16852
|
"properties": {
|
|
16716
16853
|
"id": {
|
|
16717
16854
|
"type": "integer",
|
|
16718
|
-
"format": "int64"
|
|
16855
|
+
"format": "int64",
|
|
16856
|
+
"x-go-type-skip-optional-pointer": false
|
|
16719
16857
|
},
|
|
16720
16858
|
"created_at": {
|
|
16721
|
-
"type": "string"
|
|
16859
|
+
"type": "string",
|
|
16860
|
+
"x-go-type": "time.Time",
|
|
16861
|
+
"x-go-type-import": {
|
|
16862
|
+
"path": "time"
|
|
16863
|
+
},
|
|
16864
|
+
"x-go-type-skip-optional-pointer": true
|
|
16722
16865
|
},
|
|
16723
16866
|
"updated_at": {
|
|
16724
|
-
"type": "string"
|
|
16867
|
+
"type": "string",
|
|
16868
|
+
"x-go-type": "time.Time",
|
|
16869
|
+
"x-go-type-import": {
|
|
16870
|
+
"path": "time"
|
|
16871
|
+
},
|
|
16872
|
+
"x-go-type-skip-optional-pointer": true
|
|
16725
16873
|
},
|
|
16726
16874
|
"service_name": {
|
|
16727
16875
|
"type": "string"
|
|
@@ -16751,7 +16899,8 @@
|
|
|
16751
16899
|
"properties": {
|
|
16752
16900
|
"id": {
|
|
16753
16901
|
"type": "integer",
|
|
16754
|
-
"format": "int64"
|
|
16902
|
+
"format": "int64",
|
|
16903
|
+
"x-go-type-skip-optional-pointer": false
|
|
16755
16904
|
},
|
|
16756
16905
|
"status": {
|
|
16757
16906
|
"type": "string"
|
|
@@ -16760,10 +16909,20 @@
|
|
|
16760
16909
|
"type": "boolean"
|
|
16761
16910
|
},
|
|
16762
16911
|
"created_at": {
|
|
16763
|
-
"type": "string"
|
|
16912
|
+
"type": "string",
|
|
16913
|
+
"x-go-type": "time.Time",
|
|
16914
|
+
"x-go-type-import": {
|
|
16915
|
+
"path": "time"
|
|
16916
|
+
},
|
|
16917
|
+
"x-go-type-skip-optional-pointer": true
|
|
16764
16918
|
},
|
|
16765
16919
|
"updated_at": {
|
|
16766
|
-
"type": "string"
|
|
16920
|
+
"type": "string",
|
|
16921
|
+
"x-go-type": "time.Time",
|
|
16922
|
+
"x-go-type-import": {
|
|
16923
|
+
"path": "time"
|
|
16924
|
+
},
|
|
16925
|
+
"x-go-type-skip-optional-pointer": true
|
|
16767
16926
|
},
|
|
16768
16927
|
"title": {
|
|
16769
16928
|
"type": "string"
|
|
@@ -16802,7 +16961,12 @@
|
|
|
16802
16961
|
"type": "string"
|
|
16803
16962
|
},
|
|
16804
16963
|
"due_on": {
|
|
16805
|
-
"type": "string"
|
|
16964
|
+
"type": "string",
|
|
16965
|
+
"x-go-type": "types.Date",
|
|
16966
|
+
"x-go-type-import": {
|
|
16967
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
16968
|
+
},
|
|
16969
|
+
"x-go-type-skip-optional-pointer": true
|
|
16806
16970
|
},
|
|
16807
16971
|
"replies_count": {
|
|
16808
16972
|
"type": "integer",
|
|
@@ -16845,7 +17009,8 @@
|
|
|
16845
17009
|
"properties": {
|
|
16846
17010
|
"id": {
|
|
16847
17011
|
"type": "integer",
|
|
16848
|
-
"format": "int64"
|
|
17012
|
+
"format": "int64",
|
|
17013
|
+
"x-go-type-skip-optional-pointer": false
|
|
16849
17014
|
},
|
|
16850
17015
|
"status": {
|
|
16851
17016
|
"type": "string"
|
|
@@ -16854,10 +17019,20 @@
|
|
|
16854
17019
|
"type": "boolean"
|
|
16855
17020
|
},
|
|
16856
17021
|
"created_at": {
|
|
16857
|
-
"type": "string"
|
|
17022
|
+
"type": "string",
|
|
17023
|
+
"x-go-type": "time.Time",
|
|
17024
|
+
"x-go-type-import": {
|
|
17025
|
+
"path": "time"
|
|
17026
|
+
},
|
|
17027
|
+
"x-go-type-skip-optional-pointer": true
|
|
16858
17028
|
},
|
|
16859
17029
|
"updated_at": {
|
|
16860
|
-
"type": "string"
|
|
17030
|
+
"type": "string",
|
|
17031
|
+
"x-go-type": "time.Time",
|
|
17032
|
+
"x-go-type-import": {
|
|
17033
|
+
"path": "time"
|
|
17034
|
+
},
|
|
17035
|
+
"x-go-type-skip-optional-pointer": true
|
|
16861
17036
|
},
|
|
16862
17037
|
"title": {
|
|
16863
17038
|
"type": "string"
|
|
@@ -16896,7 +17071,8 @@
|
|
|
16896
17071
|
"properties": {
|
|
16897
17072
|
"id": {
|
|
16898
17073
|
"type": "integer",
|
|
16899
|
-
"format": "int64"
|
|
17074
|
+
"format": "int64",
|
|
17075
|
+
"x-go-type-skip-optional-pointer": false
|
|
16900
17076
|
},
|
|
16901
17077
|
"name": {
|
|
16902
17078
|
"type": "string"
|
|
@@ -16912,7 +17088,8 @@
|
|
|
16912
17088
|
"properties": {
|
|
16913
17089
|
"id": {
|
|
16914
17090
|
"type": "integer",
|
|
16915
|
-
"format": "int64"
|
|
17091
|
+
"format": "int64",
|
|
17092
|
+
"x-go-type-skip-optional-pointer": false
|
|
16916
17093
|
},
|
|
16917
17094
|
"status": {
|
|
16918
17095
|
"type": "string"
|
|
@@ -16921,10 +17098,20 @@
|
|
|
16921
17098
|
"type": "boolean"
|
|
16922
17099
|
},
|
|
16923
17100
|
"created_at": {
|
|
16924
|
-
"type": "string"
|
|
17101
|
+
"type": "string",
|
|
17102
|
+
"x-go-type": "time.Time",
|
|
17103
|
+
"x-go-type-import": {
|
|
17104
|
+
"path": "time"
|
|
17105
|
+
},
|
|
17106
|
+
"x-go-type-skip-optional-pointer": true
|
|
16925
17107
|
},
|
|
16926
17108
|
"updated_at": {
|
|
16927
|
-
"type": "string"
|
|
17109
|
+
"type": "string",
|
|
17110
|
+
"x-go-type": "time.Time",
|
|
17111
|
+
"x-go-type-import": {
|
|
17112
|
+
"path": "time"
|
|
17113
|
+
},
|
|
17114
|
+
"x-go-type-skip-optional-pointer": true
|
|
16928
17115
|
},
|
|
16929
17116
|
"title": {
|
|
16930
17117
|
"type": "string"
|
|
@@ -16992,7 +17179,8 @@
|
|
|
16992
17179
|
"properties": {
|
|
16993
17180
|
"id": {
|
|
16994
17181
|
"type": "integer",
|
|
16995
|
-
"format": "int64"
|
|
17182
|
+
"format": "int64",
|
|
17183
|
+
"x-go-type-skip-optional-pointer": false
|
|
16996
17184
|
},
|
|
16997
17185
|
"status": {
|
|
16998
17186
|
"type": "string"
|
|
@@ -17001,10 +17189,20 @@
|
|
|
17001
17189
|
"type": "boolean"
|
|
17002
17190
|
},
|
|
17003
17191
|
"created_at": {
|
|
17004
|
-
"type": "string"
|
|
17192
|
+
"type": "string",
|
|
17193
|
+
"x-go-type": "time.Time",
|
|
17194
|
+
"x-go-type-import": {
|
|
17195
|
+
"path": "time"
|
|
17196
|
+
},
|
|
17197
|
+
"x-go-type-skip-optional-pointer": true
|
|
17005
17198
|
},
|
|
17006
17199
|
"updated_at": {
|
|
17007
|
-
"type": "string"
|
|
17200
|
+
"type": "string",
|
|
17201
|
+
"x-go-type": "time.Time",
|
|
17202
|
+
"x-go-type-import": {
|
|
17203
|
+
"path": "time"
|
|
17204
|
+
},
|
|
17205
|
+
"x-go-type-skip-optional-pointer": true
|
|
17008
17206
|
},
|
|
17009
17207
|
"title": {
|
|
17010
17208
|
"type": "string"
|
|
@@ -17072,7 +17270,8 @@
|
|
|
17072
17270
|
"properties": {
|
|
17073
17271
|
"source_recording_id": {
|
|
17074
17272
|
"type": "integer",
|
|
17075
|
-
"format": "int64"
|
|
17273
|
+
"format": "int64",
|
|
17274
|
+
"x-go-type-skip-optional-pointer": false
|
|
17076
17275
|
}
|
|
17077
17276
|
},
|
|
17078
17277
|
"required": [
|
|
@@ -17087,7 +17286,8 @@
|
|
|
17087
17286
|
"properties": {
|
|
17088
17287
|
"id": {
|
|
17089
17288
|
"type": "integer",
|
|
17090
|
-
"format": "int64"
|
|
17289
|
+
"format": "int64",
|
|
17290
|
+
"x-go-type-skip-optional-pointer": false
|
|
17091
17291
|
},
|
|
17092
17292
|
"status": {
|
|
17093
17293
|
"type": "string"
|
|
@@ -17096,10 +17296,20 @@
|
|
|
17096
17296
|
"type": "boolean"
|
|
17097
17297
|
},
|
|
17098
17298
|
"created_at": {
|
|
17099
|
-
"type": "string"
|
|
17299
|
+
"type": "string",
|
|
17300
|
+
"x-go-type": "time.Time",
|
|
17301
|
+
"x-go-type-import": {
|
|
17302
|
+
"path": "time"
|
|
17303
|
+
},
|
|
17304
|
+
"x-go-type-skip-optional-pointer": true
|
|
17100
17305
|
},
|
|
17101
17306
|
"updated_at": {
|
|
17102
|
-
"type": "string"
|
|
17307
|
+
"type": "string",
|
|
17308
|
+
"x-go-type": "time.Time",
|
|
17309
|
+
"x-go-type-import": {
|
|
17310
|
+
"path": "time"
|
|
17311
|
+
},
|
|
17312
|
+
"x-go-type-skip-optional-pointer": true
|
|
17103
17313
|
},
|
|
17104
17314
|
"title": {
|
|
17105
17315
|
"type": "string"
|
|
@@ -17223,10 +17433,16 @@
|
|
|
17223
17433
|
"type": "string"
|
|
17224
17434
|
},
|
|
17225
17435
|
"due_on": {
|
|
17226
|
-
"type": "string"
|
|
17436
|
+
"type": "string",
|
|
17437
|
+
"x-go-type": "types.Date",
|
|
17438
|
+
"x-go-type-import": {
|
|
17439
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
17440
|
+
},
|
|
17441
|
+
"x-go-type-skip-optional-pointer": true
|
|
17227
17442
|
},
|
|
17228
17443
|
"notify": {
|
|
17229
|
-
"type": "boolean"
|
|
17444
|
+
"type": "boolean",
|
|
17445
|
+
"x-go-type-skip-optional-pointer": false
|
|
17230
17446
|
}
|
|
17231
17447
|
},
|
|
17232
17448
|
"required": [
|
|
@@ -17243,7 +17459,12 @@
|
|
|
17243
17459
|
"type": "string"
|
|
17244
17460
|
},
|
|
17245
17461
|
"due_on": {
|
|
17246
|
-
"type": "string"
|
|
17462
|
+
"type": "string",
|
|
17463
|
+
"x-go-type": "types.Date",
|
|
17464
|
+
"x-go-type-import": {
|
|
17465
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
17466
|
+
},
|
|
17467
|
+
"x-go-type-skip-optional-pointer": true
|
|
17247
17468
|
},
|
|
17248
17469
|
"assignees": {
|
|
17249
17470
|
"type": "array",
|
|
@@ -17309,7 +17530,8 @@
|
|
|
17309
17530
|
"items": {
|
|
17310
17531
|
"type": "integer",
|
|
17311
17532
|
"format": "int64"
|
|
17312
|
-
}
|
|
17533
|
+
},
|
|
17534
|
+
"x-go-type-skip-optional-pointer": false
|
|
17313
17535
|
}
|
|
17314
17536
|
},
|
|
17315
17537
|
"required": [
|
|
@@ -17323,7 +17545,8 @@
|
|
|
17323
17545
|
"type": "object",
|
|
17324
17546
|
"properties": {
|
|
17325
17547
|
"content": {
|
|
17326
|
-
"type": "string"
|
|
17548
|
+
"type": "string",
|
|
17549
|
+
"maxLength": 16
|
|
17327
17550
|
}
|
|
17328
17551
|
},
|
|
17329
17552
|
"required": [
|
|
@@ -17377,14 +17600,16 @@
|
|
|
17377
17600
|
},
|
|
17378
17601
|
"category_id": {
|
|
17379
17602
|
"type": "integer",
|
|
17380
|
-
"format": "int64"
|
|
17603
|
+
"format": "int64",
|
|
17604
|
+
"x-go-type-skip-optional-pointer": false
|
|
17381
17605
|
},
|
|
17382
17606
|
"subscriptions": {
|
|
17383
17607
|
"type": "array",
|
|
17384
17608
|
"items": {
|
|
17385
17609
|
"type": "integer",
|
|
17386
17610
|
"format": "int64"
|
|
17387
|
-
}
|
|
17611
|
+
},
|
|
17612
|
+
"x-go-type-skip-optional-pointer": false
|
|
17388
17613
|
}
|
|
17389
17614
|
},
|
|
17390
17615
|
"required": [
|
|
@@ -17493,7 +17718,8 @@
|
|
|
17493
17718
|
"type": "object",
|
|
17494
17719
|
"properties": {
|
|
17495
17720
|
"content": {
|
|
17496
|
-
"type": "string"
|
|
17721
|
+
"type": "string",
|
|
17722
|
+
"maxLength": 16
|
|
17497
17723
|
}
|
|
17498
17724
|
},
|
|
17499
17725
|
"required": [
|
|
@@ -17510,10 +17736,20 @@
|
|
|
17510
17736
|
"type": "string"
|
|
17511
17737
|
},
|
|
17512
17738
|
"starts_at": {
|
|
17513
|
-
"type": "string"
|
|
17739
|
+
"type": "string",
|
|
17740
|
+
"x-go-type": "time.Time",
|
|
17741
|
+
"x-go-type-import": {
|
|
17742
|
+
"path": "time"
|
|
17743
|
+
},
|
|
17744
|
+
"x-go-type-skip-optional-pointer": true
|
|
17514
17745
|
},
|
|
17515
17746
|
"ends_at": {
|
|
17516
|
-
"type": "string"
|
|
17747
|
+
"type": "string",
|
|
17748
|
+
"x-go-type": "time.Time",
|
|
17749
|
+
"x-go-type-import": {
|
|
17750
|
+
"path": "time"
|
|
17751
|
+
},
|
|
17752
|
+
"x-go-type-skip-optional-pointer": true
|
|
17517
17753
|
},
|
|
17518
17754
|
"description": {
|
|
17519
17755
|
"type": "string"
|
|
@@ -17526,17 +17762,20 @@
|
|
|
17526
17762
|
}
|
|
17527
17763
|
},
|
|
17528
17764
|
"all_day": {
|
|
17529
|
-
"type": "boolean"
|
|
17765
|
+
"type": "boolean",
|
|
17766
|
+
"x-go-type-skip-optional-pointer": false
|
|
17530
17767
|
},
|
|
17531
17768
|
"notify": {
|
|
17532
|
-
"type": "boolean"
|
|
17769
|
+
"type": "boolean",
|
|
17770
|
+
"x-go-type-skip-optional-pointer": false
|
|
17533
17771
|
},
|
|
17534
17772
|
"subscriptions": {
|
|
17535
17773
|
"type": "array",
|
|
17536
17774
|
"items": {
|
|
17537
17775
|
"type": "integer",
|
|
17538
17776
|
"format": "int64"
|
|
17539
|
-
}
|
|
17777
|
+
},
|
|
17778
|
+
"x-go-type-skip-optional-pointer": false
|
|
17540
17779
|
}
|
|
17541
17780
|
},
|
|
17542
17781
|
"required": [
|
|
@@ -17579,7 +17818,8 @@
|
|
|
17579
17818
|
},
|
|
17580
17819
|
"person_id": {
|
|
17581
17820
|
"type": "integer",
|
|
17582
|
-
"format": "int64"
|
|
17821
|
+
"format": "int64",
|
|
17822
|
+
"x-go-type-skip-optional-pointer": false
|
|
17583
17823
|
}
|
|
17584
17824
|
},
|
|
17585
17825
|
"required": [
|
|
@@ -17614,13 +17854,24 @@
|
|
|
17614
17854
|
}
|
|
17615
17855
|
},
|
|
17616
17856
|
"notify": {
|
|
17617
|
-
"type": "boolean"
|
|
17857
|
+
"type": "boolean",
|
|
17858
|
+
"x-go-type-skip-optional-pointer": false
|
|
17618
17859
|
},
|
|
17619
17860
|
"due_on": {
|
|
17620
|
-
"type": "string"
|
|
17861
|
+
"type": "string",
|
|
17862
|
+
"x-go-type": "types.Date",
|
|
17863
|
+
"x-go-type-import": {
|
|
17864
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
17865
|
+
},
|
|
17866
|
+
"x-go-type-skip-optional-pointer": true
|
|
17621
17867
|
},
|
|
17622
17868
|
"starts_on": {
|
|
17623
|
-
"type": "string"
|
|
17869
|
+
"type": "string",
|
|
17870
|
+
"x-go-type": "types.Date",
|
|
17871
|
+
"x-go-type-import": {
|
|
17872
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
17873
|
+
},
|
|
17874
|
+
"x-go-type-skip-optional-pointer": true
|
|
17624
17875
|
}
|
|
17625
17876
|
},
|
|
17626
17877
|
"required": [
|
|
@@ -17678,7 +17929,8 @@
|
|
|
17678
17929
|
"items": {
|
|
17679
17930
|
"type": "integer",
|
|
17680
17931
|
"format": "int64"
|
|
17681
|
-
}
|
|
17932
|
+
},
|
|
17933
|
+
"x-go-type-skip-optional-pointer": false
|
|
17682
17934
|
}
|
|
17683
17935
|
},
|
|
17684
17936
|
"required": [
|
|
@@ -17715,7 +17967,8 @@
|
|
|
17715
17967
|
}
|
|
17716
17968
|
},
|
|
17717
17969
|
"active": {
|
|
17718
|
-
"type": "boolean"
|
|
17970
|
+
"type": "boolean",
|
|
17971
|
+
"x-go-type-skip-optional-pointer": false
|
|
17719
17972
|
}
|
|
17720
17973
|
},
|
|
17721
17974
|
"required": [
|
|
@@ -17734,7 +17987,8 @@
|
|
|
17734
17987
|
"properties": {
|
|
17735
17988
|
"id": {
|
|
17736
17989
|
"type": "integer",
|
|
17737
|
-
"format": "int64"
|
|
17990
|
+
"format": "int64",
|
|
17991
|
+
"x-go-type-skip-optional-pointer": false
|
|
17738
17992
|
},
|
|
17739
17993
|
"title": {
|
|
17740
17994
|
"type": "string"
|
|
@@ -17770,7 +18024,8 @@
|
|
|
17770
18024
|
"properties": {
|
|
17771
18025
|
"id": {
|
|
17772
18026
|
"type": "integer",
|
|
17773
|
-
"format": "int64"
|
|
18027
|
+
"format": "int64",
|
|
18028
|
+
"x-go-type-skip-optional-pointer": false
|
|
17774
18029
|
},
|
|
17775
18030
|
"status": {
|
|
17776
18031
|
"type": "string"
|
|
@@ -17779,10 +18034,20 @@
|
|
|
17779
18034
|
"type": "boolean"
|
|
17780
18035
|
},
|
|
17781
18036
|
"created_at": {
|
|
17782
|
-
"type": "string"
|
|
18037
|
+
"type": "string",
|
|
18038
|
+
"x-go-type": "time.Time",
|
|
18039
|
+
"x-go-type-import": {
|
|
18040
|
+
"path": "time"
|
|
18041
|
+
},
|
|
18042
|
+
"x-go-type-skip-optional-pointer": true
|
|
17783
18043
|
},
|
|
17784
18044
|
"updated_at": {
|
|
17785
|
-
"type": "string"
|
|
18045
|
+
"type": "string",
|
|
18046
|
+
"x-go-type": "time.Time",
|
|
18047
|
+
"x-go-type-import": {
|
|
18048
|
+
"path": "time"
|
|
18049
|
+
},
|
|
18050
|
+
"x-go-type-skip-optional-pointer": true
|
|
17786
18051
|
},
|
|
17787
18052
|
"title": {
|
|
17788
18053
|
"type": "string"
|
|
@@ -17860,11 +18125,13 @@
|
|
|
17860
18125
|
"properties": {
|
|
17861
18126
|
"id": {
|
|
17862
18127
|
"type": "integer",
|
|
17863
|
-
"format": "int64"
|
|
18128
|
+
"format": "int64",
|
|
18129
|
+
"x-go-type-skip-optional-pointer": false
|
|
17864
18130
|
},
|
|
17865
18131
|
"recording_id": {
|
|
17866
18132
|
"type": "integer",
|
|
17867
|
-
"format": "int64"
|
|
18133
|
+
"format": "int64",
|
|
18134
|
+
"x-go-type-skip-optional-pointer": false
|
|
17868
18135
|
},
|
|
17869
18136
|
"action": {
|
|
17870
18137
|
"type": "string"
|
|
@@ -17873,7 +18140,12 @@
|
|
|
17873
18140
|
"$ref": "#/components/schemas/EventDetails"
|
|
17874
18141
|
},
|
|
17875
18142
|
"created_at": {
|
|
17876
|
-
"type": "string"
|
|
18143
|
+
"type": "string",
|
|
18144
|
+
"x-go-type": "time.Time",
|
|
18145
|
+
"x-go-type-import": {
|
|
18146
|
+
"path": "time"
|
|
18147
|
+
},
|
|
18148
|
+
"x-go-type-skip-optional-pointer": true
|
|
17877
18149
|
},
|
|
17878
18150
|
"creator": {
|
|
17879
18151
|
"$ref": "#/components/schemas/Person"
|
|
@@ -17939,7 +18211,8 @@
|
|
|
17939
18211
|
"properties": {
|
|
17940
18212
|
"id": {
|
|
17941
18213
|
"type": "integer",
|
|
17942
|
-
"format": "int64"
|
|
18214
|
+
"format": "int64",
|
|
18215
|
+
"x-go-type-skip-optional-pointer": false
|
|
17943
18216
|
},
|
|
17944
18217
|
"status": {
|
|
17945
18218
|
"type": "string"
|
|
@@ -17948,10 +18221,20 @@
|
|
|
17948
18221
|
"type": "boolean"
|
|
17949
18222
|
},
|
|
17950
18223
|
"created_at": {
|
|
17951
|
-
"type": "string"
|
|
18224
|
+
"type": "string",
|
|
18225
|
+
"x-go-type": "time.Time",
|
|
18226
|
+
"x-go-type-import": {
|
|
18227
|
+
"path": "time"
|
|
18228
|
+
},
|
|
18229
|
+
"x-go-type-skip-optional-pointer": true
|
|
17952
18230
|
},
|
|
17953
18231
|
"updated_at": {
|
|
17954
|
-
"type": "string"
|
|
18232
|
+
"type": "string",
|
|
18233
|
+
"x-go-type": "time.Time",
|
|
18234
|
+
"x-go-type-import": {
|
|
18235
|
+
"path": "time"
|
|
18236
|
+
},
|
|
18237
|
+
"x-go-type-skip-optional-pointer": true
|
|
17955
18238
|
},
|
|
17956
18239
|
"title": {
|
|
17957
18240
|
"type": "string"
|
|
@@ -18022,7 +18305,8 @@
|
|
|
18022
18305
|
"properties": {
|
|
18023
18306
|
"id": {
|
|
18024
18307
|
"type": "integer",
|
|
18025
|
-
"format": "int64"
|
|
18308
|
+
"format": "int64",
|
|
18309
|
+
"x-go-type-skip-optional-pointer": false
|
|
18026
18310
|
},
|
|
18027
18311
|
"status": {
|
|
18028
18312
|
"type": "string"
|
|
@@ -18031,10 +18315,20 @@
|
|
|
18031
18315
|
"type": "boolean"
|
|
18032
18316
|
},
|
|
18033
18317
|
"created_at": {
|
|
18034
|
-
"type": "string"
|
|
18318
|
+
"type": "string",
|
|
18319
|
+
"x-go-type": "time.Time",
|
|
18320
|
+
"x-go-type-import": {
|
|
18321
|
+
"path": "time"
|
|
18322
|
+
},
|
|
18323
|
+
"x-go-type-skip-optional-pointer": true
|
|
18035
18324
|
},
|
|
18036
18325
|
"updated_at": {
|
|
18037
|
-
"type": "string"
|
|
18326
|
+
"type": "string",
|
|
18327
|
+
"x-go-type": "time.Time",
|
|
18328
|
+
"x-go-type-import": {
|
|
18329
|
+
"path": "time"
|
|
18330
|
+
},
|
|
18331
|
+
"x-go-type-skip-optional-pointer": true
|
|
18038
18332
|
},
|
|
18039
18333
|
"title": {
|
|
18040
18334
|
"type": "string"
|
|
@@ -18341,7 +18635,8 @@
|
|
|
18341
18635
|
"properties": {
|
|
18342
18636
|
"id": {
|
|
18343
18637
|
"type": "integer",
|
|
18344
|
-
"format": "int64"
|
|
18638
|
+
"format": "int64",
|
|
18639
|
+
"x-go-type-skip-optional-pointer": false
|
|
18345
18640
|
},
|
|
18346
18641
|
"status": {
|
|
18347
18642
|
"type": "string"
|
|
@@ -18350,10 +18645,20 @@
|
|
|
18350
18645
|
"type": "boolean"
|
|
18351
18646
|
},
|
|
18352
18647
|
"created_at": {
|
|
18353
|
-
"type": "string"
|
|
18648
|
+
"type": "string",
|
|
18649
|
+
"x-go-type": "time.Time",
|
|
18650
|
+
"x-go-type-import": {
|
|
18651
|
+
"path": "time"
|
|
18652
|
+
},
|
|
18653
|
+
"x-go-type-skip-optional-pointer": true
|
|
18354
18654
|
},
|
|
18355
18655
|
"updated_at": {
|
|
18356
|
-
"type": "string"
|
|
18656
|
+
"type": "string",
|
|
18657
|
+
"x-go-type": "time.Time",
|
|
18658
|
+
"x-go-type-import": {
|
|
18659
|
+
"path": "time"
|
|
18660
|
+
},
|
|
18661
|
+
"x-go-type-skip-optional-pointer": true
|
|
18357
18662
|
},
|
|
18358
18663
|
"title": {
|
|
18359
18664
|
"type": "string"
|
|
@@ -18635,7 +18940,8 @@
|
|
|
18635
18940
|
"properties": {
|
|
18636
18941
|
"id": {
|
|
18637
18942
|
"type": "integer",
|
|
18638
|
-
"format": "int64"
|
|
18943
|
+
"format": "int64",
|
|
18944
|
+
"x-go-type-skip-optional-pointer": false
|
|
18639
18945
|
},
|
|
18640
18946
|
"status": {
|
|
18641
18947
|
"type": "string"
|
|
@@ -18644,10 +18950,20 @@
|
|
|
18644
18950
|
"type": "boolean"
|
|
18645
18951
|
},
|
|
18646
18952
|
"created_at": {
|
|
18647
|
-
"type": "string"
|
|
18953
|
+
"type": "string",
|
|
18954
|
+
"x-go-type": "time.Time",
|
|
18955
|
+
"x-go-type-import": {
|
|
18956
|
+
"path": "time"
|
|
18957
|
+
},
|
|
18958
|
+
"x-go-type-skip-optional-pointer": true
|
|
18648
18959
|
},
|
|
18649
18960
|
"updated_at": {
|
|
18650
|
-
"type": "string"
|
|
18961
|
+
"type": "string",
|
|
18962
|
+
"x-go-type": "time.Time",
|
|
18963
|
+
"x-go-type-import": {
|
|
18964
|
+
"path": "time"
|
|
18965
|
+
},
|
|
18966
|
+
"x-go-type-skip-optional-pointer": true
|
|
18651
18967
|
},
|
|
18652
18968
|
"title": {
|
|
18653
18969
|
"type": "string"
|
|
@@ -18726,7 +19042,8 @@
|
|
|
18726
19042
|
"properties": {
|
|
18727
19043
|
"id": {
|
|
18728
19044
|
"type": "integer",
|
|
18729
|
-
"format": "int64"
|
|
19045
|
+
"format": "int64",
|
|
19046
|
+
"x-go-type-skip-optional-pointer": false
|
|
18730
19047
|
},
|
|
18731
19048
|
"status": {
|
|
18732
19049
|
"type": "string"
|
|
@@ -18735,10 +19052,20 @@
|
|
|
18735
19052
|
"type": "boolean"
|
|
18736
19053
|
},
|
|
18737
19054
|
"created_at": {
|
|
18738
|
-
"type": "string"
|
|
19055
|
+
"type": "string",
|
|
19056
|
+
"x-go-type": "time.Time",
|
|
19057
|
+
"x-go-type-import": {
|
|
19058
|
+
"path": "time"
|
|
19059
|
+
},
|
|
19060
|
+
"x-go-type-skip-optional-pointer": true
|
|
18739
19061
|
},
|
|
18740
19062
|
"updated_at": {
|
|
18741
|
-
"type": "string"
|
|
19063
|
+
"type": "string",
|
|
19064
|
+
"x-go-type": "time.Time",
|
|
19065
|
+
"x-go-type-import": {
|
|
19066
|
+
"path": "time"
|
|
19067
|
+
},
|
|
19068
|
+
"x-go-type-skip-optional-pointer": true
|
|
18742
19069
|
},
|
|
18743
19070
|
"title": {
|
|
18744
19071
|
"type": "string"
|
|
@@ -18799,7 +19126,8 @@
|
|
|
18799
19126
|
"properties": {
|
|
18800
19127
|
"id": {
|
|
18801
19128
|
"type": "integer",
|
|
18802
|
-
"format": "int64"
|
|
19129
|
+
"format": "int64",
|
|
19130
|
+
"x-go-type-skip-optional-pointer": false
|
|
18803
19131
|
},
|
|
18804
19132
|
"name": {
|
|
18805
19133
|
"type": "string"
|
|
@@ -18808,10 +19136,20 @@
|
|
|
18808
19136
|
"type": "string"
|
|
18809
19137
|
},
|
|
18810
19138
|
"created_at": {
|
|
18811
|
-
"type": "string"
|
|
19139
|
+
"type": "string",
|
|
19140
|
+
"x-go-type": "time.Time",
|
|
19141
|
+
"x-go-type-import": {
|
|
19142
|
+
"path": "time"
|
|
19143
|
+
},
|
|
19144
|
+
"x-go-type-skip-optional-pointer": true
|
|
18812
19145
|
},
|
|
18813
19146
|
"updated_at": {
|
|
18814
|
-
"type": "string"
|
|
19147
|
+
"type": "string",
|
|
19148
|
+
"x-go-type": "time.Time",
|
|
19149
|
+
"x-go-type-import": {
|
|
19150
|
+
"path": "time"
|
|
19151
|
+
},
|
|
19152
|
+
"x-go-type-skip-optional-pointer": true
|
|
18815
19153
|
}
|
|
18816
19154
|
},
|
|
18817
19155
|
"required": [
|
|
@@ -18827,11 +19165,13 @@
|
|
|
18827
19165
|
"properties": {
|
|
18828
19166
|
"source_id": {
|
|
18829
19167
|
"type": "integer",
|
|
18830
|
-
"format": "int64"
|
|
19168
|
+
"format": "int64",
|
|
19169
|
+
"x-go-type-skip-optional-pointer": false
|
|
18831
19170
|
},
|
|
18832
19171
|
"target_id": {
|
|
18833
19172
|
"type": "integer",
|
|
18834
|
-
"format": "int64"
|
|
19173
|
+
"format": "int64",
|
|
19174
|
+
"x-go-type-skip-optional-pointer": false
|
|
18835
19175
|
},
|
|
18836
19176
|
"position": {
|
|
18837
19177
|
"type": "integer",
|
|
@@ -18848,7 +19188,8 @@
|
|
|
18848
19188
|
"properties": {
|
|
18849
19189
|
"column_id": {
|
|
18850
19190
|
"type": "integer",
|
|
18851
|
-
"format": "int64"
|
|
19191
|
+
"format": "int64",
|
|
19192
|
+
"x-go-type-skip-optional-pointer": false
|
|
18852
19193
|
}
|
|
18853
19194
|
},
|
|
18854
19195
|
"required": [
|
|
@@ -18882,7 +19223,8 @@
|
|
|
18882
19223
|
"properties": {
|
|
18883
19224
|
"id": {
|
|
18884
19225
|
"type": "integer",
|
|
18885
|
-
"format": "int64"
|
|
19226
|
+
"format": "int64",
|
|
19227
|
+
"x-go-type-skip-optional-pointer": false
|
|
18886
19228
|
},
|
|
18887
19229
|
"attachable_sgid": {
|
|
18888
19230
|
"type": "string"
|
|
@@ -18931,10 +19273,20 @@
|
|
|
18931
19273
|
}
|
|
18932
19274
|
},
|
|
18933
19275
|
"created_at": {
|
|
18934
|
-
"type": "string"
|
|
19276
|
+
"type": "string",
|
|
19277
|
+
"x-go-type": "time.Time",
|
|
19278
|
+
"x-go-type-import": {
|
|
19279
|
+
"path": "time"
|
|
19280
|
+
},
|
|
19281
|
+
"x-go-type-skip-optional-pointer": true
|
|
18935
19282
|
},
|
|
18936
19283
|
"updated_at": {
|
|
18937
|
-
"type": "string"
|
|
19284
|
+
"type": "string",
|
|
19285
|
+
"x-go-type": "time.Time",
|
|
19286
|
+
"x-go-type-import": {
|
|
19287
|
+
"path": "time"
|
|
19288
|
+
},
|
|
19289
|
+
"x-go-type-skip-optional-pointer": true
|
|
18938
19290
|
},
|
|
18939
19291
|
"admin": {
|
|
18940
19292
|
"type": "boolean"
|
|
@@ -18988,7 +19340,8 @@
|
|
|
18988
19340
|
"properties": {
|
|
18989
19341
|
"id": {
|
|
18990
19342
|
"type": "integer",
|
|
18991
|
-
"format": "int64"
|
|
19343
|
+
"format": "int64",
|
|
19344
|
+
"x-go-type-skip-optional-pointer": false
|
|
18992
19345
|
},
|
|
18993
19346
|
"name": {
|
|
18994
19347
|
"type": "string",
|
|
@@ -19005,17 +19358,28 @@
|
|
|
19005
19358
|
"properties": {
|
|
19006
19359
|
"id": {
|
|
19007
19360
|
"type": "integer",
|
|
19008
|
-
"format": "int64"
|
|
19361
|
+
"format": "int64",
|
|
19362
|
+
"x-go-type-skip-optional-pointer": false
|
|
19009
19363
|
},
|
|
19010
19364
|
"status": {
|
|
19011
19365
|
"type": "string",
|
|
19012
19366
|
"description": "active|archived|trashed"
|
|
19013
19367
|
},
|
|
19014
19368
|
"created_at": {
|
|
19015
|
-
"type": "string"
|
|
19369
|
+
"type": "string",
|
|
19370
|
+
"x-go-type": "time.Time",
|
|
19371
|
+
"x-go-type-import": {
|
|
19372
|
+
"path": "time"
|
|
19373
|
+
},
|
|
19374
|
+
"x-go-type-skip-optional-pointer": true
|
|
19016
19375
|
},
|
|
19017
19376
|
"updated_at": {
|
|
19018
|
-
"type": "string"
|
|
19377
|
+
"type": "string",
|
|
19378
|
+
"x-go-type": "time.Time",
|
|
19379
|
+
"x-go-type-import": {
|
|
19380
|
+
"path": "time"
|
|
19381
|
+
},
|
|
19382
|
+
"x-go-type-skip-optional-pointer": true
|
|
19019
19383
|
},
|
|
19020
19384
|
"name": {
|
|
19021
19385
|
"type": "string"
|
|
@@ -19087,7 +19451,8 @@
|
|
|
19087
19451
|
"properties": {
|
|
19088
19452
|
"id": {
|
|
19089
19453
|
"type": "integer",
|
|
19090
|
-
"format": "int64"
|
|
19454
|
+
"format": "int64",
|
|
19455
|
+
"x-go-type-skip-optional-pointer": false
|
|
19091
19456
|
},
|
|
19092
19457
|
"status": {
|
|
19093
19458
|
"type": "string"
|
|
@@ -19109,7 +19474,8 @@
|
|
|
19109
19474
|
"properties": {
|
|
19110
19475
|
"id": {
|
|
19111
19476
|
"type": "integer",
|
|
19112
|
-
"format": "int64"
|
|
19477
|
+
"format": "int64",
|
|
19478
|
+
"x-go-type-skip-optional-pointer": false
|
|
19113
19479
|
},
|
|
19114
19480
|
"status": {
|
|
19115
19481
|
"type": "string"
|
|
@@ -19118,10 +19484,20 @@
|
|
|
19118
19484
|
"type": "boolean"
|
|
19119
19485
|
},
|
|
19120
19486
|
"created_at": {
|
|
19121
|
-
"type": "string"
|
|
19487
|
+
"type": "string",
|
|
19488
|
+
"x-go-type": "time.Time",
|
|
19489
|
+
"x-go-type-import": {
|
|
19490
|
+
"path": "time"
|
|
19491
|
+
},
|
|
19492
|
+
"x-go-type-skip-optional-pointer": true
|
|
19122
19493
|
},
|
|
19123
19494
|
"updated_at": {
|
|
19124
|
-
"type": "string"
|
|
19495
|
+
"type": "string",
|
|
19496
|
+
"x-go-type": "time.Time",
|
|
19497
|
+
"x-go-type-import": {
|
|
19498
|
+
"path": "time"
|
|
19499
|
+
},
|
|
19500
|
+
"x-go-type-skip-optional-pointer": true
|
|
19125
19501
|
},
|
|
19126
19502
|
"title": {
|
|
19127
19503
|
"type": "string"
|
|
@@ -19188,7 +19564,8 @@
|
|
|
19188
19564
|
"properties": {
|
|
19189
19565
|
"id": {
|
|
19190
19566
|
"type": "integer",
|
|
19191
|
-
"format": "int64"
|
|
19567
|
+
"format": "int64",
|
|
19568
|
+
"x-go-type-skip-optional-pointer": false
|
|
19192
19569
|
},
|
|
19193
19570
|
"status": {
|
|
19194
19571
|
"type": "string"
|
|
@@ -19197,10 +19574,20 @@
|
|
|
19197
19574
|
"type": "boolean"
|
|
19198
19575
|
},
|
|
19199
19576
|
"created_at": {
|
|
19200
|
-
"type": "string"
|
|
19577
|
+
"type": "string",
|
|
19578
|
+
"x-go-type": "time.Time",
|
|
19579
|
+
"x-go-type-import": {
|
|
19580
|
+
"path": "time"
|
|
19581
|
+
},
|
|
19582
|
+
"x-go-type-skip-optional-pointer": true
|
|
19201
19583
|
},
|
|
19202
19584
|
"updated_at": {
|
|
19203
|
-
"type": "string"
|
|
19585
|
+
"type": "string",
|
|
19586
|
+
"x-go-type": "time.Time",
|
|
19587
|
+
"x-go-type-import": {
|
|
19588
|
+
"path": "time"
|
|
19589
|
+
},
|
|
19590
|
+
"x-go-type-skip-optional-pointer": true
|
|
19204
19591
|
},
|
|
19205
19592
|
"title": {
|
|
19206
19593
|
"type": "string"
|
|
@@ -19234,7 +19621,12 @@
|
|
|
19234
19621
|
"type": "string"
|
|
19235
19622
|
},
|
|
19236
19623
|
"group_on": {
|
|
19237
|
-
"type": "string"
|
|
19624
|
+
"type": "string",
|
|
19625
|
+
"x-go-type": "types.Date",
|
|
19626
|
+
"x-go-type-import": {
|
|
19627
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
19628
|
+
},
|
|
19629
|
+
"x-go-type-skip-optional-pointer": true
|
|
19238
19630
|
},
|
|
19239
19631
|
"parent": {
|
|
19240
19632
|
"$ref": "#/components/schemas/RecordingParent"
|
|
@@ -19277,7 +19669,12 @@
|
|
|
19277
19669
|
"type": "string"
|
|
19278
19670
|
},
|
|
19279
19671
|
"group_on": {
|
|
19280
|
-
"type": "string"
|
|
19672
|
+
"type": "string",
|
|
19673
|
+
"x-go-type": "types.Date",
|
|
19674
|
+
"x-go-type-import": {
|
|
19675
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
19676
|
+
},
|
|
19677
|
+
"x-go-type-skip-optional-pointer": true
|
|
19281
19678
|
}
|
|
19282
19679
|
},
|
|
19283
19680
|
"required": [
|
|
@@ -19300,13 +19697,24 @@
|
|
|
19300
19697
|
"properties": {
|
|
19301
19698
|
"reminder_id": {
|
|
19302
19699
|
"type": "integer",
|
|
19303
|
-
"format": "int64"
|
|
19700
|
+
"format": "int64",
|
|
19701
|
+
"x-go-type-skip-optional-pointer": false
|
|
19304
19702
|
},
|
|
19305
19703
|
"remind_at": {
|
|
19306
|
-
"type": "string"
|
|
19704
|
+
"type": "string",
|
|
19705
|
+
"x-go-type": "time.Time",
|
|
19706
|
+
"x-go-type-import": {
|
|
19707
|
+
"path": "time"
|
|
19708
|
+
},
|
|
19709
|
+
"x-go-type-skip-optional-pointer": true
|
|
19307
19710
|
},
|
|
19308
19711
|
"group_on": {
|
|
19309
|
-
"type": "string"
|
|
19712
|
+
"type": "string",
|
|
19713
|
+
"x-go-type": "types.Date",
|
|
19714
|
+
"x-go-type-import": {
|
|
19715
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
19716
|
+
},
|
|
19717
|
+
"x-go-type-skip-optional-pointer": true
|
|
19310
19718
|
},
|
|
19311
19719
|
"question": {
|
|
19312
19720
|
"$ref": "#/components/schemas/Question"
|
|
@@ -19359,7 +19767,8 @@
|
|
|
19359
19767
|
"properties": {
|
|
19360
19768
|
"id": {
|
|
19361
19769
|
"type": "integer",
|
|
19362
|
-
"format": "int64"
|
|
19770
|
+
"format": "int64",
|
|
19771
|
+
"x-go-type-skip-optional-pointer": false
|
|
19363
19772
|
},
|
|
19364
19773
|
"status": {
|
|
19365
19774
|
"type": "string"
|
|
@@ -19368,10 +19777,20 @@
|
|
|
19368
19777
|
"type": "boolean"
|
|
19369
19778
|
},
|
|
19370
19779
|
"created_at": {
|
|
19371
|
-
"type": "string"
|
|
19780
|
+
"type": "string",
|
|
19781
|
+
"x-go-type": "time.Time",
|
|
19782
|
+
"x-go-type-import": {
|
|
19783
|
+
"path": "time"
|
|
19784
|
+
},
|
|
19785
|
+
"x-go-type-skip-optional-pointer": true
|
|
19372
19786
|
},
|
|
19373
19787
|
"updated_at": {
|
|
19374
|
-
"type": "string"
|
|
19788
|
+
"type": "string",
|
|
19789
|
+
"x-go-type": "time.Time",
|
|
19790
|
+
"x-go-type-import": {
|
|
19791
|
+
"path": "time"
|
|
19792
|
+
},
|
|
19793
|
+
"x-go-type-skip-optional-pointer": true
|
|
19375
19794
|
},
|
|
19376
19795
|
"title": {
|
|
19377
19796
|
"type": "string"
|
|
@@ -19447,7 +19866,8 @@
|
|
|
19447
19866
|
"properties": {
|
|
19448
19867
|
"id": {
|
|
19449
19868
|
"type": "integer",
|
|
19450
|
-
"format": "int64"
|
|
19869
|
+
"format": "int64",
|
|
19870
|
+
"x-go-type-skip-optional-pointer": false
|
|
19451
19871
|
},
|
|
19452
19872
|
"status": {
|
|
19453
19873
|
"type": "string"
|
|
@@ -19456,10 +19876,20 @@
|
|
|
19456
19876
|
"type": "boolean"
|
|
19457
19877
|
},
|
|
19458
19878
|
"created_at": {
|
|
19459
|
-
"type": "string"
|
|
19879
|
+
"type": "string",
|
|
19880
|
+
"x-go-type": "time.Time",
|
|
19881
|
+
"x-go-type-import": {
|
|
19882
|
+
"path": "time"
|
|
19883
|
+
},
|
|
19884
|
+
"x-go-type-skip-optional-pointer": true
|
|
19460
19885
|
},
|
|
19461
19886
|
"updated_at": {
|
|
19462
|
-
"type": "string"
|
|
19887
|
+
"type": "string",
|
|
19888
|
+
"x-go-type": "time.Time",
|
|
19889
|
+
"x-go-type-import": {
|
|
19890
|
+
"path": "time"
|
|
19891
|
+
},
|
|
19892
|
+
"x-go-type-skip-optional-pointer": true
|
|
19463
19893
|
},
|
|
19464
19894
|
"title": {
|
|
19465
19895
|
"type": "string"
|
|
@@ -19523,7 +19953,8 @@
|
|
|
19523
19953
|
"properties": {
|
|
19524
19954
|
"id": {
|
|
19525
19955
|
"type": "integer",
|
|
19526
|
-
"format": "int64"
|
|
19956
|
+
"format": "int64",
|
|
19957
|
+
"x-go-type-skip-optional-pointer": false
|
|
19527
19958
|
},
|
|
19528
19959
|
"name": {
|
|
19529
19960
|
"type": "string"
|
|
@@ -19543,7 +19974,8 @@
|
|
|
19543
19974
|
"properties": {
|
|
19544
19975
|
"id": {
|
|
19545
19976
|
"type": "integer",
|
|
19546
|
-
"format": "int64"
|
|
19977
|
+
"format": "int64",
|
|
19978
|
+
"x-go-type-skip-optional-pointer": false
|
|
19547
19979
|
},
|
|
19548
19980
|
"title": {
|
|
19549
19981
|
"type": "string"
|
|
@@ -19571,7 +20003,8 @@
|
|
|
19571
20003
|
"properties": {
|
|
19572
20004
|
"source_id": {
|
|
19573
20005
|
"type": "integer",
|
|
19574
|
-
"format": "int64"
|
|
20006
|
+
"format": "int64",
|
|
20007
|
+
"x-go-type-skip-optional-pointer": false
|
|
19575
20008
|
},
|
|
19576
20009
|
"position": {
|
|
19577
20010
|
"type": "integer",
|
|
@@ -19594,7 +20027,8 @@
|
|
|
19594
20027
|
"parent_id": {
|
|
19595
20028
|
"type": "integer",
|
|
19596
20029
|
"description": "Optional todolist ID to move the todo to a different parent",
|
|
19597
|
-
"format": "int64"
|
|
20030
|
+
"format": "int64",
|
|
20031
|
+
"x-go-type-skip-optional-pointer": false
|
|
19598
20032
|
}
|
|
19599
20033
|
},
|
|
19600
20034
|
"required": [
|
|
@@ -19638,7 +20072,8 @@
|
|
|
19638
20072
|
"properties": {
|
|
19639
20073
|
"id": {
|
|
19640
20074
|
"type": "integer",
|
|
19641
|
-
"format": "int64"
|
|
20075
|
+
"format": "int64",
|
|
20076
|
+
"x-go-type-skip-optional-pointer": false
|
|
19642
20077
|
},
|
|
19643
20078
|
"status": {
|
|
19644
20079
|
"type": "string"
|
|
@@ -19647,10 +20082,20 @@
|
|
|
19647
20082
|
"type": "boolean"
|
|
19648
20083
|
},
|
|
19649
20084
|
"created_at": {
|
|
19650
|
-
"type": "string"
|
|
20085
|
+
"type": "string",
|
|
20086
|
+
"x-go-type": "time.Time",
|
|
20087
|
+
"x-go-type-import": {
|
|
20088
|
+
"path": "time"
|
|
20089
|
+
},
|
|
20090
|
+
"x-go-type-skip-optional-pointer": true
|
|
19651
20091
|
},
|
|
19652
20092
|
"updated_at": {
|
|
19653
|
-
"type": "string"
|
|
20093
|
+
"type": "string",
|
|
20094
|
+
"x-go-type": "time.Time",
|
|
20095
|
+
"x-go-type-import": {
|
|
20096
|
+
"path": "time"
|
|
20097
|
+
},
|
|
20098
|
+
"x-go-type-skip-optional-pointer": true
|
|
19654
20099
|
},
|
|
19655
20100
|
"title": {
|
|
19656
20101
|
"type": "string"
|
|
@@ -19722,7 +20167,8 @@
|
|
|
19722
20167
|
"properties": {
|
|
19723
20168
|
"id": {
|
|
19724
20169
|
"type": "integer",
|
|
19725
|
-
"format": "int64"
|
|
20170
|
+
"format": "int64",
|
|
20171
|
+
"x-go-type-skip-optional-pointer": false
|
|
19726
20172
|
},
|
|
19727
20173
|
"status": {
|
|
19728
20174
|
"type": "string"
|
|
@@ -19731,10 +20177,20 @@
|
|
|
19731
20177
|
"type": "boolean"
|
|
19732
20178
|
},
|
|
19733
20179
|
"created_at": {
|
|
19734
|
-
"type": "string"
|
|
20180
|
+
"type": "string",
|
|
20181
|
+
"x-go-type": "time.Time",
|
|
20182
|
+
"x-go-type-import": {
|
|
20183
|
+
"path": "time"
|
|
20184
|
+
},
|
|
20185
|
+
"x-go-type-skip-optional-pointer": true
|
|
19735
20186
|
},
|
|
19736
20187
|
"updated_at": {
|
|
19737
|
-
"type": "string"
|
|
20188
|
+
"type": "string",
|
|
20189
|
+
"x-go-type": "time.Time",
|
|
20190
|
+
"x-go-type-import": {
|
|
20191
|
+
"path": "time"
|
|
20192
|
+
},
|
|
20193
|
+
"x-go-type-skip-optional-pointer": true
|
|
19738
20194
|
},
|
|
19739
20195
|
"title": {
|
|
19740
20196
|
"type": "string"
|
|
@@ -19783,10 +20239,20 @@
|
|
|
19783
20239
|
"type": "boolean"
|
|
19784
20240
|
},
|
|
19785
20241
|
"starts_at": {
|
|
19786
|
-
"type": "string"
|
|
20242
|
+
"type": "string",
|
|
20243
|
+
"x-go-type": "types.FlexibleTime",
|
|
20244
|
+
"x-go-type-import": {
|
|
20245
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
20246
|
+
},
|
|
20247
|
+
"x-go-type-skip-optional-pointer": true
|
|
19787
20248
|
},
|
|
19788
20249
|
"ends_at": {
|
|
19789
|
-
"type": "string"
|
|
20250
|
+
"type": "string",
|
|
20251
|
+
"x-go-type": "types.FlexibleTime",
|
|
20252
|
+
"x-go-type-import": {
|
|
20253
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
20254
|
+
},
|
|
20255
|
+
"x-go-type-skip-optional-pointer": true
|
|
19790
20256
|
},
|
|
19791
20257
|
"participants": {
|
|
19792
20258
|
"type": "array",
|
|
@@ -19835,7 +20301,8 @@
|
|
|
19835
20301
|
"properties": {
|
|
19836
20302
|
"id": {
|
|
19837
20303
|
"type": "integer",
|
|
19838
|
-
"format": "int64"
|
|
20304
|
+
"format": "int64",
|
|
20305
|
+
"x-go-type-skip-optional-pointer": false
|
|
19839
20306
|
},
|
|
19840
20307
|
"name": {
|
|
19841
20308
|
"type": "string"
|
|
@@ -19853,7 +20320,8 @@
|
|
|
19853
20320
|
"properties": {
|
|
19854
20321
|
"id": {
|
|
19855
20322
|
"type": "integer",
|
|
19856
|
-
"format": "int64"
|
|
20323
|
+
"format": "int64",
|
|
20324
|
+
"x-go-type-skip-optional-pointer": false
|
|
19857
20325
|
},
|
|
19858
20326
|
"status": {
|
|
19859
20327
|
"type": "string"
|
|
@@ -19862,10 +20330,20 @@
|
|
|
19862
20330
|
"type": "boolean"
|
|
19863
20331
|
},
|
|
19864
20332
|
"created_at": {
|
|
19865
|
-
"type": "string"
|
|
20333
|
+
"type": "string",
|
|
20334
|
+
"x-go-type": "time.Time",
|
|
20335
|
+
"x-go-type-import": {
|
|
20336
|
+
"path": "time"
|
|
20337
|
+
},
|
|
20338
|
+
"x-go-type-skip-optional-pointer": true
|
|
19866
20339
|
},
|
|
19867
20340
|
"updated_at": {
|
|
19868
|
-
"type": "string"
|
|
20341
|
+
"type": "string",
|
|
20342
|
+
"x-go-type": "time.Time",
|
|
20343
|
+
"x-go-type-import": {
|
|
20344
|
+
"path": "time"
|
|
20345
|
+
},
|
|
20346
|
+
"x-go-type-skip-optional-pointer": true
|
|
19869
20347
|
},
|
|
19870
20348
|
"title": {
|
|
19871
20349
|
"type": "string"
|
|
@@ -19990,16 +20468,27 @@
|
|
|
19990
20468
|
"properties": {
|
|
19991
20469
|
"id": {
|
|
19992
20470
|
"type": "integer",
|
|
19993
|
-
"format": "int64"
|
|
20471
|
+
"format": "int64",
|
|
20472
|
+
"x-go-type-skip-optional-pointer": false
|
|
19994
20473
|
},
|
|
19995
20474
|
"status": {
|
|
19996
20475
|
"type": "string"
|
|
19997
20476
|
},
|
|
19998
20477
|
"created_at": {
|
|
19999
|
-
"type": "string"
|
|
20478
|
+
"type": "string",
|
|
20479
|
+
"x-go-type": "time.Time",
|
|
20480
|
+
"x-go-type-import": {
|
|
20481
|
+
"path": "time"
|
|
20482
|
+
},
|
|
20483
|
+
"x-go-type-skip-optional-pointer": true
|
|
20000
20484
|
},
|
|
20001
20485
|
"updated_at": {
|
|
20002
|
-
"type": "string"
|
|
20486
|
+
"type": "string",
|
|
20487
|
+
"x-go-type": "time.Time",
|
|
20488
|
+
"x-go-type-import": {
|
|
20489
|
+
"path": "time"
|
|
20490
|
+
},
|
|
20491
|
+
"x-go-type-skip-optional-pointer": true
|
|
20003
20492
|
},
|
|
20004
20493
|
"name": {
|
|
20005
20494
|
"type": "string"
|
|
@@ -20032,17 +20521,24 @@
|
|
|
20032
20521
|
"properties": {
|
|
20033
20522
|
"id": {
|
|
20034
20523
|
"type": "integer",
|
|
20035
|
-
"format": "int64"
|
|
20524
|
+
"format": "int64",
|
|
20525
|
+
"x-go-type-skip-optional-pointer": false
|
|
20036
20526
|
},
|
|
20037
20527
|
"created_at": {
|
|
20038
|
-
"type": "string"
|
|
20528
|
+
"type": "string",
|
|
20529
|
+
"x-go-type": "time.Time",
|
|
20530
|
+
"x-go-type-import": {
|
|
20531
|
+
"path": "time"
|
|
20532
|
+
},
|
|
20533
|
+
"x-go-type-skip-optional-pointer": true
|
|
20039
20534
|
},
|
|
20040
20535
|
"kind": {
|
|
20041
20536
|
"type": "string"
|
|
20042
20537
|
},
|
|
20043
20538
|
"parent_recording_id": {
|
|
20044
20539
|
"type": "integer",
|
|
20045
|
-
"format": "int64"
|
|
20540
|
+
"format": "int64",
|
|
20541
|
+
"x-go-type-skip-optional-pointer": false
|
|
20046
20542
|
},
|
|
20047
20543
|
"url": {
|
|
20048
20544
|
"type": "string"
|
|
@@ -20075,7 +20571,8 @@
|
|
|
20075
20571
|
"properties": {
|
|
20076
20572
|
"id": {
|
|
20077
20573
|
"type": "integer",
|
|
20078
|
-
"format": "int64"
|
|
20574
|
+
"format": "int64",
|
|
20575
|
+
"x-go-type-skip-optional-pointer": false
|
|
20079
20576
|
},
|
|
20080
20577
|
"status": {
|
|
20081
20578
|
"type": "string"
|
|
@@ -20084,10 +20581,20 @@
|
|
|
20084
20581
|
"type": "boolean"
|
|
20085
20582
|
},
|
|
20086
20583
|
"created_at": {
|
|
20087
|
-
"type": "string"
|
|
20584
|
+
"type": "string",
|
|
20585
|
+
"x-go-type": "time.Time",
|
|
20586
|
+
"x-go-type-import": {
|
|
20587
|
+
"path": "time"
|
|
20588
|
+
},
|
|
20589
|
+
"x-go-type-skip-optional-pointer": true
|
|
20088
20590
|
},
|
|
20089
20591
|
"updated_at": {
|
|
20090
|
-
"type": "string"
|
|
20592
|
+
"type": "string",
|
|
20593
|
+
"x-go-type": "time.Time",
|
|
20594
|
+
"x-go-type-import": {
|
|
20595
|
+
"path": "time"
|
|
20596
|
+
},
|
|
20597
|
+
"x-go-type-skip-optional-pointer": true
|
|
20091
20598
|
},
|
|
20092
20599
|
"title": {
|
|
20093
20600
|
"type": "string"
|
|
@@ -20150,7 +20657,8 @@
|
|
|
20150
20657
|
"properties": {
|
|
20151
20658
|
"id": {
|
|
20152
20659
|
"type": "integer",
|
|
20153
|
-
"format": "int64"
|
|
20660
|
+
"format": "int64",
|
|
20661
|
+
"x-go-type-skip-optional-pointer": false
|
|
20154
20662
|
},
|
|
20155
20663
|
"status": {
|
|
20156
20664
|
"type": "string",
|
|
@@ -20160,10 +20668,20 @@
|
|
|
20160
20668
|
"type": "boolean"
|
|
20161
20669
|
},
|
|
20162
20670
|
"created_at": {
|
|
20163
|
-
"type": "string"
|
|
20671
|
+
"type": "string",
|
|
20672
|
+
"x-go-type": "time.Time",
|
|
20673
|
+
"x-go-type-import": {
|
|
20674
|
+
"path": "time"
|
|
20675
|
+
},
|
|
20676
|
+
"x-go-type-skip-optional-pointer": true
|
|
20164
20677
|
},
|
|
20165
20678
|
"updated_at": {
|
|
20166
|
-
"type": "string"
|
|
20679
|
+
"type": "string",
|
|
20680
|
+
"x-go-type": "time.Time",
|
|
20681
|
+
"x-go-type-import": {
|
|
20682
|
+
"path": "time"
|
|
20683
|
+
},
|
|
20684
|
+
"x-go-type-skip-optional-pointer": true
|
|
20167
20685
|
},
|
|
20168
20686
|
"title": {
|
|
20169
20687
|
"type": "string"
|
|
@@ -20216,10 +20734,20 @@
|
|
|
20216
20734
|
"type": "string"
|
|
20217
20735
|
},
|
|
20218
20736
|
"starts_on": {
|
|
20219
|
-
"type": "string"
|
|
20737
|
+
"type": "string",
|
|
20738
|
+
"x-go-type": "types.Date",
|
|
20739
|
+
"x-go-type-import": {
|
|
20740
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
20741
|
+
},
|
|
20742
|
+
"x-go-type-skip-optional-pointer": true
|
|
20220
20743
|
},
|
|
20221
20744
|
"due_on": {
|
|
20222
|
-
"type": "string"
|
|
20745
|
+
"type": "string",
|
|
20746
|
+
"x-go-type": "types.Date",
|
|
20747
|
+
"x-go-type-import": {
|
|
20748
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
20749
|
+
},
|
|
20750
|
+
"x-go-type-skip-optional-pointer": true
|
|
20223
20751
|
},
|
|
20224
20752
|
"assignees": {
|
|
20225
20753
|
"type": "array",
|
|
@@ -20266,7 +20794,8 @@
|
|
|
20266
20794
|
"properties": {
|
|
20267
20795
|
"id": {
|
|
20268
20796
|
"type": "integer",
|
|
20269
|
-
"format": "int64"
|
|
20797
|
+
"format": "int64",
|
|
20798
|
+
"x-go-type-skip-optional-pointer": false
|
|
20270
20799
|
},
|
|
20271
20800
|
"name": {
|
|
20272
20801
|
"type": "string"
|
|
@@ -20286,7 +20815,8 @@
|
|
|
20286
20815
|
"properties": {
|
|
20287
20816
|
"id": {
|
|
20288
20817
|
"type": "integer",
|
|
20289
|
-
"format": "int64"
|
|
20818
|
+
"format": "int64",
|
|
20819
|
+
"x-go-type-skip-optional-pointer": false
|
|
20290
20820
|
},
|
|
20291
20821
|
"title": {
|
|
20292
20822
|
"type": "string"
|
|
@@ -20314,7 +20844,8 @@
|
|
|
20314
20844
|
"properties": {
|
|
20315
20845
|
"id": {
|
|
20316
20846
|
"type": "integer",
|
|
20317
|
-
"format": "int64"
|
|
20847
|
+
"format": "int64",
|
|
20848
|
+
"x-go-type-skip-optional-pointer": false
|
|
20318
20849
|
},
|
|
20319
20850
|
"status": {
|
|
20320
20851
|
"type": "string",
|
|
@@ -20324,10 +20855,20 @@
|
|
|
20324
20855
|
"type": "boolean"
|
|
20325
20856
|
},
|
|
20326
20857
|
"created_at": {
|
|
20327
|
-
"type": "string"
|
|
20858
|
+
"type": "string",
|
|
20859
|
+
"x-go-type": "time.Time",
|
|
20860
|
+
"x-go-type-import": {
|
|
20861
|
+
"path": "time"
|
|
20862
|
+
},
|
|
20863
|
+
"x-go-type-skip-optional-pointer": true
|
|
20328
20864
|
},
|
|
20329
20865
|
"updated_at": {
|
|
20330
|
-
"type": "string"
|
|
20866
|
+
"type": "string",
|
|
20867
|
+
"x-go-type": "time.Time",
|
|
20868
|
+
"x-go-type-import": {
|
|
20869
|
+
"path": "time"
|
|
20870
|
+
},
|
|
20871
|
+
"x-go-type-skip-optional-pointer": true
|
|
20331
20872
|
},
|
|
20332
20873
|
"title": {
|
|
20333
20874
|
"type": "string"
|
|
@@ -20421,7 +20962,8 @@
|
|
|
20421
20962
|
"properties": {
|
|
20422
20963
|
"id": {
|
|
20423
20964
|
"type": "integer",
|
|
20424
|
-
"format": "int64"
|
|
20965
|
+
"format": "int64",
|
|
20966
|
+
"x-go-type-skip-optional-pointer": false
|
|
20425
20967
|
},
|
|
20426
20968
|
"status": {
|
|
20427
20969
|
"type": "string"
|
|
@@ -20430,10 +20972,20 @@
|
|
|
20430
20972
|
"type": "boolean"
|
|
20431
20973
|
},
|
|
20432
20974
|
"created_at": {
|
|
20433
|
-
"type": "string"
|
|
20975
|
+
"type": "string",
|
|
20976
|
+
"x-go-type": "time.Time",
|
|
20977
|
+
"x-go-type-import": {
|
|
20978
|
+
"path": "time"
|
|
20979
|
+
},
|
|
20980
|
+
"x-go-type-skip-optional-pointer": true
|
|
20434
20981
|
},
|
|
20435
20982
|
"updated_at": {
|
|
20436
|
-
"type": "string"
|
|
20983
|
+
"type": "string",
|
|
20984
|
+
"x-go-type": "time.Time",
|
|
20985
|
+
"x-go-type-import": {
|
|
20986
|
+
"path": "time"
|
|
20987
|
+
},
|
|
20988
|
+
"x-go-type-skip-optional-pointer": true
|
|
20437
20989
|
},
|
|
20438
20990
|
"title": {
|
|
20439
20991
|
"type": "string"
|
|
@@ -20543,7 +21095,8 @@
|
|
|
20543
21095
|
"properties": {
|
|
20544
21096
|
"id": {
|
|
20545
21097
|
"type": "integer",
|
|
20546
|
-
"format": "int64"
|
|
21098
|
+
"format": "int64",
|
|
21099
|
+
"x-go-type-skip-optional-pointer": false
|
|
20547
21100
|
},
|
|
20548
21101
|
"status": {
|
|
20549
21102
|
"type": "string"
|
|
@@ -20552,10 +21105,20 @@
|
|
|
20552
21105
|
"type": "boolean"
|
|
20553
21106
|
},
|
|
20554
21107
|
"created_at": {
|
|
20555
|
-
"type": "string"
|
|
21108
|
+
"type": "string",
|
|
21109
|
+
"x-go-type": "time.Time",
|
|
21110
|
+
"x-go-type-import": {
|
|
21111
|
+
"path": "time"
|
|
21112
|
+
},
|
|
21113
|
+
"x-go-type-skip-optional-pointer": true
|
|
20556
21114
|
},
|
|
20557
21115
|
"updated_at": {
|
|
20558
|
-
"type": "string"
|
|
21116
|
+
"type": "string",
|
|
21117
|
+
"x-go-type": "time.Time",
|
|
21118
|
+
"x-go-type-import": {
|
|
21119
|
+
"path": "time"
|
|
21120
|
+
},
|
|
21121
|
+
"x-go-type-skip-optional-pointer": true
|
|
20559
21122
|
},
|
|
20560
21123
|
"title": {
|
|
20561
21124
|
"type": "string"
|
|
@@ -20638,16 +21201,27 @@
|
|
|
20638
21201
|
"properties": {
|
|
20639
21202
|
"id": {
|
|
20640
21203
|
"type": "integer",
|
|
20641
|
-
"format": "int64"
|
|
21204
|
+
"format": "int64",
|
|
21205
|
+
"x-go-type-skip-optional-pointer": false
|
|
20642
21206
|
},
|
|
20643
21207
|
"status": {
|
|
20644
21208
|
"type": "string"
|
|
20645
21209
|
},
|
|
20646
21210
|
"created_at": {
|
|
20647
|
-
"type": "string"
|
|
21211
|
+
"type": "string",
|
|
21212
|
+
"x-go-type": "time.Time",
|
|
21213
|
+
"x-go-type-import": {
|
|
21214
|
+
"path": "time"
|
|
21215
|
+
},
|
|
21216
|
+
"x-go-type-skip-optional-pointer": true
|
|
20648
21217
|
},
|
|
20649
21218
|
"updated_at": {
|
|
20650
|
-
"type": "string"
|
|
21219
|
+
"type": "string",
|
|
21220
|
+
"x-go-type": "time.Time",
|
|
21221
|
+
"x-go-type-import": {
|
|
21222
|
+
"path": "time"
|
|
21223
|
+
},
|
|
21224
|
+
"x-go-type-skip-optional-pointer": true
|
|
20651
21225
|
},
|
|
20652
21226
|
"title": {
|
|
20653
21227
|
"type": "string"
|
|
@@ -20719,7 +21293,12 @@
|
|
|
20719
21293
|
"type": "string"
|
|
20720
21294
|
},
|
|
20721
21295
|
"due_on": {
|
|
20722
|
-
"type": "string"
|
|
21296
|
+
"type": "string",
|
|
21297
|
+
"x-go-type": "types.Date",
|
|
21298
|
+
"x-go-type-import": {
|
|
21299
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
21300
|
+
},
|
|
21301
|
+
"x-go-type-skip-optional-pointer": true
|
|
20723
21302
|
},
|
|
20724
21303
|
"assignee_ids": {
|
|
20725
21304
|
"type": "array",
|
|
@@ -20740,7 +21319,12 @@
|
|
|
20740
21319
|
"type": "string"
|
|
20741
21320
|
},
|
|
20742
21321
|
"due_on": {
|
|
20743
|
-
"type": "string"
|
|
21322
|
+
"type": "string",
|
|
21323
|
+
"x-go-type": "types.Date",
|
|
21324
|
+
"x-go-type-import": {
|
|
21325
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
21326
|
+
},
|
|
21327
|
+
"x-go-type-skip-optional-pointer": true
|
|
20744
21328
|
},
|
|
20745
21329
|
"assignees": {
|
|
20746
21330
|
"type": "array",
|
|
@@ -20825,7 +21409,8 @@
|
|
|
20825
21409
|
},
|
|
20826
21410
|
"category_id": {
|
|
20827
21411
|
"type": "integer",
|
|
20828
|
-
"format": "int64"
|
|
21412
|
+
"format": "int64",
|
|
21413
|
+
"x-go-type-skip-optional-pointer": false
|
|
20829
21414
|
}
|
|
20830
21415
|
}
|
|
20831
21416
|
},
|
|
@@ -20903,11 +21488,13 @@
|
|
|
20903
21488
|
"properties": {
|
|
20904
21489
|
"notify_on_answer": {
|
|
20905
21490
|
"type": "boolean",
|
|
20906
|
-
"description": "Notify when someone answers"
|
|
21491
|
+
"description": "Notify when someone answers",
|
|
21492
|
+
"x-go-type-skip-optional-pointer": false
|
|
20907
21493
|
},
|
|
20908
21494
|
"digest_include_unanswered": {
|
|
20909
21495
|
"type": "boolean",
|
|
20910
|
-
"description": "Include unanswered in digest"
|
|
21496
|
+
"description": "Include unanswered in digest",
|
|
21497
|
+
"x-go-type-skip-optional-pointer": false
|
|
20911
21498
|
}
|
|
20912
21499
|
}
|
|
20913
21500
|
},
|
|
@@ -20932,7 +21519,8 @@
|
|
|
20932
21519
|
"$ref": "#/components/schemas/QuestionSchedule"
|
|
20933
21520
|
},
|
|
20934
21521
|
"paused": {
|
|
20935
|
-
"type": "boolean"
|
|
21522
|
+
"type": "boolean",
|
|
21523
|
+
"x-go-type-skip-optional-pointer": false
|
|
20936
21524
|
}
|
|
20937
21525
|
}
|
|
20938
21526
|
},
|
|
@@ -20946,10 +21534,20 @@
|
|
|
20946
21534
|
"type": "string"
|
|
20947
21535
|
},
|
|
20948
21536
|
"starts_at": {
|
|
20949
|
-
"type": "string"
|
|
21537
|
+
"type": "string",
|
|
21538
|
+
"x-go-type": "time.Time",
|
|
21539
|
+
"x-go-type-import": {
|
|
21540
|
+
"path": "time"
|
|
21541
|
+
},
|
|
21542
|
+
"x-go-type-skip-optional-pointer": true
|
|
20950
21543
|
},
|
|
20951
21544
|
"ends_at": {
|
|
20952
|
-
"type": "string"
|
|
21545
|
+
"type": "string",
|
|
21546
|
+
"x-go-type": "time.Time",
|
|
21547
|
+
"x-go-type-import": {
|
|
21548
|
+
"path": "time"
|
|
21549
|
+
},
|
|
21550
|
+
"x-go-type-skip-optional-pointer": true
|
|
20953
21551
|
},
|
|
20954
21552
|
"description": {
|
|
20955
21553
|
"type": "string"
|
|
@@ -20962,10 +21560,12 @@
|
|
|
20962
21560
|
}
|
|
20963
21561
|
},
|
|
20964
21562
|
"all_day": {
|
|
20965
|
-
"type": "boolean"
|
|
21563
|
+
"type": "boolean",
|
|
21564
|
+
"x-go-type-skip-optional-pointer": false
|
|
20966
21565
|
},
|
|
20967
21566
|
"notify": {
|
|
20968
|
-
"type": "boolean"
|
|
21567
|
+
"type": "boolean",
|
|
21568
|
+
"x-go-type-skip-optional-pointer": false
|
|
20969
21569
|
}
|
|
20970
21570
|
}
|
|
20971
21571
|
},
|
|
@@ -21036,7 +21636,8 @@
|
|
|
21036
21636
|
},
|
|
21037
21637
|
"person_id": {
|
|
21038
21638
|
"type": "integer",
|
|
21039
|
-
"format": "int64"
|
|
21639
|
+
"format": "int64",
|
|
21640
|
+
"x-go-type-skip-optional-pointer": false
|
|
21040
21641
|
}
|
|
21041
21642
|
}
|
|
21042
21643
|
},
|
|
@@ -21067,13 +21668,24 @@
|
|
|
21067
21668
|
}
|
|
21068
21669
|
},
|
|
21069
21670
|
"notify": {
|
|
21070
|
-
"type": "boolean"
|
|
21671
|
+
"type": "boolean",
|
|
21672
|
+
"x-go-type-skip-optional-pointer": false
|
|
21071
21673
|
},
|
|
21072
21674
|
"due_on": {
|
|
21073
|
-
"type": "string"
|
|
21675
|
+
"type": "string",
|
|
21676
|
+
"x-go-type": "types.Date",
|
|
21677
|
+
"x-go-type-import": {
|
|
21678
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
21679
|
+
},
|
|
21680
|
+
"x-go-type-skip-optional-pointer": true
|
|
21074
21681
|
},
|
|
21075
21682
|
"starts_on": {
|
|
21076
|
-
"type": "string"
|
|
21683
|
+
"type": "string",
|
|
21684
|
+
"x-go-type": "types.Date",
|
|
21685
|
+
"x-go-type-import": {
|
|
21686
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
21687
|
+
},
|
|
21688
|
+
"x-go-type-skip-optional-pointer": true
|
|
21077
21689
|
}
|
|
21078
21690
|
}
|
|
21079
21691
|
},
|
|
@@ -21148,7 +21760,8 @@
|
|
|
21148
21760
|
}
|
|
21149
21761
|
},
|
|
21150
21762
|
"active": {
|
|
21151
|
-
"type": "boolean"
|
|
21763
|
+
"type": "boolean",
|
|
21764
|
+
"x-go-type-skip-optional-pointer": false
|
|
21152
21765
|
}
|
|
21153
21766
|
}
|
|
21154
21767
|
},
|
|
@@ -21160,7 +21773,8 @@
|
|
|
21160
21773
|
"properties": {
|
|
21161
21774
|
"id": {
|
|
21162
21775
|
"type": "integer",
|
|
21163
|
-
"format": "int64"
|
|
21776
|
+
"format": "int64",
|
|
21777
|
+
"x-go-type-skip-optional-pointer": false
|
|
21164
21778
|
},
|
|
21165
21779
|
"status": {
|
|
21166
21780
|
"type": "string"
|
|
@@ -21169,10 +21783,20 @@
|
|
|
21169
21783
|
"type": "boolean"
|
|
21170
21784
|
},
|
|
21171
21785
|
"created_at": {
|
|
21172
|
-
"type": "string"
|
|
21786
|
+
"type": "string",
|
|
21787
|
+
"x-go-type": "time.Time",
|
|
21788
|
+
"x-go-type-import": {
|
|
21789
|
+
"path": "time"
|
|
21790
|
+
},
|
|
21791
|
+
"x-go-type-skip-optional-pointer": true
|
|
21173
21792
|
},
|
|
21174
21793
|
"updated_at": {
|
|
21175
|
-
"type": "string"
|
|
21794
|
+
"type": "string",
|
|
21795
|
+
"x-go-type": "time.Time",
|
|
21796
|
+
"x-go-type-import": {
|
|
21797
|
+
"path": "time"
|
|
21798
|
+
},
|
|
21799
|
+
"x-go-type-skip-optional-pointer": true
|
|
21176
21800
|
},
|
|
21177
21801
|
"title": {
|
|
21178
21802
|
"type": "string"
|
|
@@ -21227,11 +21851,21 @@
|
|
|
21227
21851
|
},
|
|
21228
21852
|
"width": {
|
|
21229
21853
|
"type": "integer",
|
|
21230
|
-
"format": "int32"
|
|
21854
|
+
"format": "int32",
|
|
21855
|
+
"x-go-type": "types.FlexInt",
|
|
21856
|
+
"x-go-type-import": {
|
|
21857
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
21858
|
+
},
|
|
21859
|
+
"x-go-type-skip-optional-pointer": true
|
|
21231
21860
|
},
|
|
21232
21861
|
"height": {
|
|
21233
21862
|
"type": "integer",
|
|
21234
|
-
"format": "int32"
|
|
21863
|
+
"format": "int32",
|
|
21864
|
+
"x-go-type": "types.FlexInt",
|
|
21865
|
+
"x-go-type-import": {
|
|
21866
|
+
"path": "github.com/basecamp/basecamp-sdk/go/pkg/types"
|
|
21867
|
+
},
|
|
21868
|
+
"x-go-type-skip-optional-pointer": true
|
|
21235
21869
|
},
|
|
21236
21870
|
"download_url": {
|
|
21237
21871
|
"type": "string"
|
|
@@ -21282,7 +21916,8 @@
|
|
|
21282
21916
|
"properties": {
|
|
21283
21917
|
"id": {
|
|
21284
21918
|
"type": "integer",
|
|
21285
|
-
"format": "int64"
|
|
21919
|
+
"format": "int64",
|
|
21920
|
+
"x-go-type-skip-optional-pointer": false
|
|
21286
21921
|
},
|
|
21287
21922
|
"status": {
|
|
21288
21923
|
"type": "string"
|
|
@@ -21291,10 +21926,20 @@
|
|
|
21291
21926
|
"type": "boolean"
|
|
21292
21927
|
},
|
|
21293
21928
|
"created_at": {
|
|
21294
|
-
"type": "string"
|
|
21929
|
+
"type": "string",
|
|
21930
|
+
"x-go-type": "time.Time",
|
|
21931
|
+
"x-go-type-import": {
|
|
21932
|
+
"path": "time"
|
|
21933
|
+
},
|
|
21934
|
+
"x-go-type-skip-optional-pointer": true
|
|
21295
21935
|
},
|
|
21296
21936
|
"updated_at": {
|
|
21297
|
-
"type": "string"
|
|
21937
|
+
"type": "string",
|
|
21938
|
+
"x-go-type": "time.Time",
|
|
21939
|
+
"x-go-type-import": {
|
|
21940
|
+
"path": "time"
|
|
21941
|
+
},
|
|
21942
|
+
"x-go-type-skip-optional-pointer": true
|
|
21298
21943
|
},
|
|
21299
21944
|
"title": {
|
|
21300
21945
|
"type": "string"
|
|
@@ -21369,16 +22014,27 @@
|
|
|
21369
22014
|
"properties": {
|
|
21370
22015
|
"id": {
|
|
21371
22016
|
"type": "integer",
|
|
21372
|
-
"format": "int64"
|
|
22017
|
+
"format": "int64",
|
|
22018
|
+
"x-go-type-skip-optional-pointer": false
|
|
21373
22019
|
},
|
|
21374
22020
|
"active": {
|
|
21375
22021
|
"type": "boolean"
|
|
21376
22022
|
},
|
|
21377
22023
|
"created_at": {
|
|
21378
|
-
"type": "string"
|
|
22024
|
+
"type": "string",
|
|
22025
|
+
"x-go-type": "time.Time",
|
|
22026
|
+
"x-go-type-import": {
|
|
22027
|
+
"path": "time"
|
|
22028
|
+
},
|
|
22029
|
+
"x-go-type-skip-optional-pointer": true
|
|
21379
22030
|
},
|
|
21380
22031
|
"updated_at": {
|
|
21381
|
-
"type": "string"
|
|
22032
|
+
"type": "string",
|
|
22033
|
+
"x-go-type": "time.Time",
|
|
22034
|
+
"x-go-type-import": {
|
|
22035
|
+
"path": "time"
|
|
22036
|
+
},
|
|
22037
|
+
"x-go-type-skip-optional-pointer": true
|
|
21382
22038
|
},
|
|
21383
22039
|
"payload_url": {
|
|
21384
22040
|
"type": "string"
|
|
@@ -21417,7 +22073,8 @@
|
|
|
21417
22073
|
"properties": {
|
|
21418
22074
|
"id": {
|
|
21419
22075
|
"type": "integer",
|
|
21420
|
-
"format": "int64"
|
|
22076
|
+
"format": "int64",
|
|
22077
|
+
"x-go-type-skip-optional-pointer": false
|
|
21421
22078
|
},
|
|
21422
22079
|
"url": {
|
|
21423
22080
|
"type": "string"
|
|
@@ -21435,7 +22092,8 @@
|
|
|
21435
22092
|
"properties": {
|
|
21436
22093
|
"id": {
|
|
21437
22094
|
"type": "integer",
|
|
21438
|
-
"format": "int64"
|
|
22095
|
+
"format": "int64",
|
|
22096
|
+
"x-go-type-skip-optional-pointer": false
|
|
21439
22097
|
}
|
|
21440
22098
|
}
|
|
21441
22099
|
},
|
|
@@ -21444,10 +22102,16 @@
|
|
|
21444
22102
|
"properties": {
|
|
21445
22103
|
"id": {
|
|
21446
22104
|
"type": "integer",
|
|
21447
|
-
"format": "int64"
|
|
22105
|
+
"format": "int64",
|
|
22106
|
+
"x-go-type-skip-optional-pointer": false
|
|
21448
22107
|
},
|
|
21449
22108
|
"created_at": {
|
|
21450
|
-
"type": "string"
|
|
22109
|
+
"type": "string",
|
|
22110
|
+
"x-go-type": "time.Time",
|
|
22111
|
+
"x-go-type-import": {
|
|
22112
|
+
"path": "time"
|
|
22113
|
+
},
|
|
22114
|
+
"x-go-type-skip-optional-pointer": true
|
|
21451
22115
|
},
|
|
21452
22116
|
"request": {
|
|
21453
22117
|
"$ref": "#/components/schemas/WebhookDeliveryRequest"
|
|
@@ -21489,14 +22153,20 @@
|
|
|
21489
22153
|
"properties": {
|
|
21490
22154
|
"id": {
|
|
21491
22155
|
"type": "integer",
|
|
21492
|
-
"format": "int64"
|
|
22156
|
+
"format": "int64",
|
|
22157
|
+
"x-go-type-skip-optional-pointer": false
|
|
21493
22158
|
},
|
|
21494
22159
|
"kind": {
|
|
21495
22160
|
"type": "string"
|
|
21496
22161
|
},
|
|
21497
22162
|
"details": {},
|
|
21498
22163
|
"created_at": {
|
|
21499
|
-
"type": "string"
|
|
22164
|
+
"type": "string",
|
|
22165
|
+
"x-go-type": "time.Time",
|
|
22166
|
+
"x-go-type-import": {
|
|
22167
|
+
"path": "time"
|
|
22168
|
+
},
|
|
22169
|
+
"x-go-type-skip-optional-pointer": true
|
|
21500
22170
|
},
|
|
21501
22171
|
"recording": {
|
|
21502
22172
|
"$ref": "#/components/schemas/Recording"
|