@remit/api-openapi-spec 0.0.38 → 0.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/openapi.json +552 -8
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -54,8 +54,7 @@
54
54
  "required": false,
55
55
  "schema": {
56
56
  "type": "string"
57
- },
58
- "explode": false
57
+ }
59
58
  },
60
59
  {
61
60
  "name": "state",
@@ -63,8 +62,7 @@
63
62
  "required": false,
64
63
  "schema": {
65
64
  "type": "string"
66
- },
67
- "explode": false
65
+ }
68
66
  },
69
67
  {
70
68
  "name": "error",
@@ -72,8 +70,7 @@
72
70
  "required": false,
73
71
  "schema": {
74
72
  "type": "string"
75
- },
76
- "explode": false
73
+ }
77
74
  }
78
75
  ],
79
76
  "responses": {
@@ -1868,6 +1865,237 @@
1868
1865
  }
1869
1866
  }
1870
1867
  },
1868
+ "/calendar-suggestions": {
1869
+ "get": {
1870
+ "operationId": "CalendarSuggestionOperations_listCalendarSuggestions",
1871
+ "description": "List the caller's suggestions in one state, newest first. `Pending` is the set that is waiting on a person and the one a client normally asks for.",
1872
+ "parameters": [
1873
+ {
1874
+ "name": "state",
1875
+ "in": "query",
1876
+ "required": true,
1877
+ "schema": {
1878
+ "$ref": "#/components/schemas/RemitImap.CalendarSuggestionState"
1879
+ }
1880
+ },
1881
+ {
1882
+ "name": "continuationToken",
1883
+ "in": "query",
1884
+ "required": false,
1885
+ "schema": {
1886
+ "type": "string"
1887
+ }
1888
+ }
1889
+ ],
1890
+ "responses": {
1891
+ "200": {
1892
+ "description": "The request has succeeded.",
1893
+ "content": {
1894
+ "application/json": {
1895
+ "schema": {
1896
+ "type": "object",
1897
+ "required": [
1898
+ "items"
1899
+ ],
1900
+ "properties": {
1901
+ "continuationToken": {
1902
+ "allOf": [
1903
+ {
1904
+ "$ref": "#/components/schemas/String800"
1905
+ }
1906
+ ],
1907
+ "description": "Opaque, server-minted cursor: absent means the first (or last) page, present means resume from here. Echo it back unchanged to fetch the next page. Every listing endpoint that accepts it rejects a token it cannot decode with 400 ValidationError rather than silently restarting from the first page (#136, #172)."
1908
+ },
1909
+ "items": {
1910
+ "type": "array",
1911
+ "items": {
1912
+ "$ref": "#/components/schemas/RemitImap.CalendarSuggestionResponse"
1913
+ }
1914
+ }
1915
+ }
1916
+ }
1917
+ }
1918
+ }
1919
+ },
1920
+ "400": {
1921
+ "description": "Validation error response",
1922
+ "content": {
1923
+ "application/json": {
1924
+ "schema": {
1925
+ "$ref": "#/components/schemas/ApiError"
1926
+ }
1927
+ }
1928
+ }
1929
+ }
1930
+ },
1931
+ "x-amazon-apigateway-integration": {
1932
+ "type": "aws_proxy",
1933
+ "httpMethod": "POST",
1934
+ "passthroughBehavior": "when_no_match",
1935
+ "uri": {
1936
+ "Fn::Sub": "arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:{{HandlerFunctionName}}/invocations"
1937
+ }
1938
+ }
1939
+ }
1940
+ },
1941
+ "/calendar-suggestions/{suggestionId}/accept": {
1942
+ "post": {
1943
+ "operationId": "CalendarSuggestionActionOperations_acceptCalendarSuggestion",
1944
+ "description": "Add the suggested event to a calendar. One transaction: a VCALENDAR is\nbuilt from the invitation's own bytes, keeping its UID and SEQUENCE and\nmarking the user `ATTENDEE;PARTSTAT=ACCEPTED`, and written through the\nsame service function every other calendar write goes through — so a web\nedit and a native edit of that event cannot diverge. Accepting a `Cancel`\nsuggestion writes `STATUS:CANCELLED` on the resource the same way.\n\nNo reply is sent to the organizer. This endpoint sends no mail at all,\nand the card says so.\n\nIdempotent: accepting an already-accepted suggestion rewrites the same\nresource and returns the same suggestion, because both the resource id\nand the suggestion id are derived rather than minted.\n\n400 when the suggestion is not one that can be accepted — already\ndeclined, dismissed or superseded — or when its iCalendar will not parse.",
1945
+ "parameters": [
1946
+ {
1947
+ "name": "suggestionId",
1948
+ "in": "path",
1949
+ "required": true,
1950
+ "schema": {
1951
+ "$ref": "#/components/schemas/UUID"
1952
+ }
1953
+ }
1954
+ ],
1955
+ "responses": {
1956
+ "200": {
1957
+ "description": "The request has succeeded.",
1958
+ "content": {
1959
+ "application/json": {
1960
+ "schema": {
1961
+ "$ref": "#/components/schemas/RemitImap.CalendarSuggestionResponse"
1962
+ }
1963
+ }
1964
+ }
1965
+ },
1966
+ "400": {
1967
+ "description": "Validation error response",
1968
+ "content": {
1969
+ "application/json": {
1970
+ "schema": {
1971
+ "$ref": "#/components/schemas/ApiError"
1972
+ }
1973
+ }
1974
+ }
1975
+ }
1976
+ },
1977
+ "requestBody": {
1978
+ "required": true,
1979
+ "content": {
1980
+ "application/json": {
1981
+ "schema": {
1982
+ "$ref": "#/components/schemas/RemitImap.AcceptCalendarSuggestionInput"
1983
+ }
1984
+ }
1985
+ }
1986
+ },
1987
+ "x-amazon-apigateway-integration": {
1988
+ "type": "aws_proxy",
1989
+ "httpMethod": "POST",
1990
+ "passthroughBehavior": "when_no_match",
1991
+ "uri": {
1992
+ "Fn::Sub": "arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:{{HandlerFunctionName}}/invocations"
1993
+ }
1994
+ }
1995
+ }
1996
+ },
1997
+ "/calendar-suggestions/{suggestionId}/decline": {
1998
+ "post": {
1999
+ "operationId": "CalendarSuggestionActionOperations_declineCalendarSuggestion",
2000
+ "description": "Say no. Writes no calendar object and sends no reply to the organizer. Idempotent; 400 when the suggestion was already accepted, since a resource exists and declining would not remove it.",
2001
+ "parameters": [
2002
+ {
2003
+ "name": "suggestionId",
2004
+ "in": "path",
2005
+ "required": true,
2006
+ "schema": {
2007
+ "$ref": "#/components/schemas/UUID"
2008
+ }
2009
+ }
2010
+ ],
2011
+ "responses": {
2012
+ "200": {
2013
+ "description": "The request has succeeded.",
2014
+ "content": {
2015
+ "application/json": {
2016
+ "schema": {
2017
+ "$ref": "#/components/schemas/RemitImap.CalendarSuggestionResponse"
2018
+ }
2019
+ }
2020
+ }
2021
+ },
2022
+ "400": {
2023
+ "description": "Validation error response",
2024
+ "content": {
2025
+ "application/json": {
2026
+ "schema": {
2027
+ "$ref": "#/components/schemas/ApiError"
2028
+ }
2029
+ }
2030
+ }
2031
+ }
2032
+ },
2033
+ "x-amazon-apigateway-integration": {
2034
+ "type": "aws_proxy",
2035
+ "httpMethod": "POST",
2036
+ "passthroughBehavior": "when_no_match",
2037
+ "uri": {
2038
+ "Fn::Sub": "arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:{{HandlerFunctionName}}/invocations"
2039
+ }
2040
+ }
2041
+ }
2042
+ },
2043
+ "/calendar-suggestions/{suggestionId}/dismiss": {
2044
+ "post": {
2045
+ "operationId": "CalendarSuggestionActionOperations_dismissCalendarSuggestion",
2046
+ "description": "Wave the card away. Writes no calendar object. With `muteSender`, also writes a standing `Filter` rule on the message's sender so their invitations stop being offered. Idempotent; 400 when the suggestion was already accepted.",
2047
+ "parameters": [
2048
+ {
2049
+ "name": "suggestionId",
2050
+ "in": "path",
2051
+ "required": true,
2052
+ "schema": {
2053
+ "$ref": "#/components/schemas/UUID"
2054
+ }
2055
+ }
2056
+ ],
2057
+ "responses": {
2058
+ "200": {
2059
+ "description": "The request has succeeded.",
2060
+ "content": {
2061
+ "application/json": {
2062
+ "schema": {
2063
+ "$ref": "#/components/schemas/RemitImap.CalendarSuggestionResponse"
2064
+ }
2065
+ }
2066
+ }
2067
+ },
2068
+ "400": {
2069
+ "description": "Validation error response",
2070
+ "content": {
2071
+ "application/json": {
2072
+ "schema": {
2073
+ "$ref": "#/components/schemas/ApiError"
2074
+ }
2075
+ }
2076
+ }
2077
+ }
2078
+ },
2079
+ "requestBody": {
2080
+ "required": true,
2081
+ "content": {
2082
+ "application/json": {
2083
+ "schema": {
2084
+ "$ref": "#/components/schemas/RemitImap.DismissCalendarSuggestionInput"
2085
+ }
2086
+ }
2087
+ }
2088
+ },
2089
+ "x-amazon-apigateway-integration": {
2090
+ "type": "aws_proxy",
2091
+ "httpMethod": "POST",
2092
+ "passthroughBehavior": "when_no_match",
2093
+ "uri": {
2094
+ "Fn::Sub": "arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:{{HandlerFunctionName}}/invocations"
2095
+ }
2096
+ }
2097
+ }
2098
+ },
1871
2099
  "/calendars": {
1872
2100
  "get": {
1873
2101
  "operationId": "CalendarOperations_listCalendars",
@@ -2913,6 +3141,71 @@
2913
3141
  }
2914
3142
  }
2915
3143
  },
3144
+ "/messages/{messageId}/calendar-suggestions": {
3145
+ "get": {
3146
+ "operationId": "MessageCalendarSuggestionOperations_listMessageCalendarSuggestions",
3147
+ "description": "Every suggestion read out of one message, in whatever state each has reached — a superseded revision included, so the card can say which revision replaced it.",
3148
+ "parameters": [
3149
+ {
3150
+ "name": "messageId",
3151
+ "in": "path",
3152
+ "required": true,
3153
+ "schema": {
3154
+ "$ref": "#/components/schemas/UUID"
3155
+ }
3156
+ }
3157
+ ],
3158
+ "responses": {
3159
+ "200": {
3160
+ "description": "The request has succeeded.",
3161
+ "content": {
3162
+ "application/json": {
3163
+ "schema": {
3164
+ "type": "object",
3165
+ "required": [
3166
+ "items"
3167
+ ],
3168
+ "properties": {
3169
+ "continuationToken": {
3170
+ "allOf": [
3171
+ {
3172
+ "$ref": "#/components/schemas/String800"
3173
+ }
3174
+ ],
3175
+ "description": "Opaque, server-minted cursor: absent means the first (or last) page, present means resume from here. Echo it back unchanged to fetch the next page. Every listing endpoint that accepts it rejects a token it cannot decode with 400 ValidationError rather than silently restarting from the first page (#136, #172)."
3176
+ },
3177
+ "items": {
3178
+ "type": "array",
3179
+ "items": {
3180
+ "$ref": "#/components/schemas/RemitImap.CalendarSuggestionResponse"
3181
+ }
3182
+ }
3183
+ }
3184
+ }
3185
+ }
3186
+ }
3187
+ },
3188
+ "400": {
3189
+ "description": "Validation error response",
3190
+ "content": {
3191
+ "application/json": {
3192
+ "schema": {
3193
+ "$ref": "#/components/schemas/ApiError"
3194
+ }
3195
+ }
3196
+ }
3197
+ }
3198
+ },
3199
+ "x-amazon-apigateway-integration": {
3200
+ "type": "aws_proxy",
3201
+ "httpMethod": "POST",
3202
+ "passthroughBehavior": "when_no_match",
3203
+ "uri": {
3204
+ "Fn::Sub": "arn:aws:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:{{HandlerFunctionName}}/invocations"
3205
+ }
3206
+ }
3207
+ }
3208
+ },
2916
3209
  "/messages/{messageId}/flags": {
2917
3210
  "patch": {
2918
3211
  "operationId": "MessageOperations_updateMessageFlags",
@@ -3507,8 +3800,7 @@
3507
3800
  "required": false,
3508
3801
  "schema": {
3509
3802
  "type": "boolean"
3510
- },
3511
- "explode": false
3803
+ }
3512
3804
  }
3513
3805
  ],
3514
3806
  "responses": {
@@ -3775,6 +4067,23 @@
3775
4067
  }
3776
4068
  }
3777
4069
  },
4070
+ "RemitImap.AcceptCalendarSuggestionInput": {
4071
+ "type": "object",
4072
+ "required": [
4073
+ "calendarId"
4074
+ ],
4075
+ "properties": {
4076
+ "calendarId": {
4077
+ "allOf": [
4078
+ {
4079
+ "$ref": "#/components/schemas/UUID"
4080
+ }
4081
+ ],
4082
+ "description": "Collection the accepted event is written into."
4083
+ }
4084
+ },
4085
+ "description": "Body of `POST /calendar-suggestions/{suggestionId}/accept`. Names the collection the event is written into; there is no default, because filing someone else's invitation into a calendar the user did not pick is a decision the server does not get to make."
4086
+ },
3778
4087
  "RemitImap.AccountAuthType": {
3779
4088
  "type": "string",
3780
4089
  "enum": [
@@ -5075,6 +5384,18 @@
5075
5384
  },
5076
5385
  "description": "One stretch of time the caller is busy in. Merged across every calendar they\nhold, so two overlapping meetings in two calendars are one span and a caller\nasking \"is this slot free\" never has to do the merging itself."
5077
5386
  },
5387
+ "RemitImap.CalendarInviteMethod": {
5388
+ "type": "string",
5389
+ "enum": [
5390
+ "Request",
5391
+ "Reply",
5392
+ "Cancel",
5393
+ "Counter",
5394
+ "Publish",
5395
+ "None"
5396
+ ],
5397
+ "description": "The iTIP method a scheduling message carries (RFC 5546 3.2), read from the VCALENDAR's METHOD property. It says what the sender is asking for, which is not derivable from the VEVENT: a cancellation and an invitation differ by this property alone."
5398
+ },
5078
5399
  "RemitImap.CalendarListResponse": {
5079
5400
  "type": "object",
5080
5401
  "required": [
@@ -5208,6 +5529,215 @@
5208
5529
  ],
5209
5530
  "description": "Where a calendar collection came from. `Default` is the one provisioned per account config on first use and is never deleted; `UserCreated` is one a person made; `MailDerived` is one populated from mail rather than by a person."
5210
5531
  },
5532
+ "RemitImap.CalendarSuggestionResponse": {
5533
+ "type": "object",
5534
+ "required": [
5535
+ "suggestionId",
5536
+ "accountConfigId",
5537
+ "messageId",
5538
+ "bodyPartId",
5539
+ "icalUid",
5540
+ "sequence",
5541
+ "method",
5542
+ "source",
5543
+ "state",
5544
+ "summary",
5545
+ "dtStart",
5546
+ "dtEnd",
5547
+ "allDay",
5548
+ "location",
5549
+ "organizer",
5550
+ "zoneCertainty",
5551
+ "acceptedCalendarObjectId",
5552
+ "createdAt",
5553
+ "updatedAt"
5554
+ ],
5555
+ "properties": {
5556
+ "suggestionId": {
5557
+ "allOf": [
5558
+ {
5559
+ "$ref": "#/components/schemas/UUID"
5560
+ }
5561
+ ],
5562
+ "description": "Primary identifier, derived from messageId + bodyPartId + icalUid",
5563
+ "readOnly": true
5564
+ },
5565
+ "accountConfigId": {
5566
+ "allOf": [
5567
+ {
5568
+ "$ref": "#/components/schemas/UUID"
5569
+ }
5570
+ ],
5571
+ "description": "Owning account configuration",
5572
+ "readOnly": true
5573
+ },
5574
+ "messageId": {
5575
+ "allOf": [
5576
+ {
5577
+ "$ref": "#/components/schemas/UUID"
5578
+ }
5579
+ ],
5580
+ "description": "Message this suggestion was read out of. The card is offered beside this message and nowhere else.",
5581
+ "readOnly": true
5582
+ },
5583
+ "bodyPartId": {
5584
+ "allOf": [
5585
+ {
5586
+ "$ref": "#/components/schemas/UUID"
5587
+ }
5588
+ ],
5589
+ "description": "MIME part the iCalendar bytes came from. Part of the identity, so two invitations in one message stay two suggestions rather than overwriting each other.",
5590
+ "readOnly": true
5591
+ },
5592
+ "icalUid": {
5593
+ "allOf": [
5594
+ {
5595
+ "$ref": "#/components/schemas/String512"
5596
+ }
5597
+ ],
5598
+ "description": "The VEVENT's UID property (RFC 5545 3.8.4.7). What ties a revision, a cancellation and the original invitation together across three separate messages.",
5599
+ "readOnly": true
5600
+ },
5601
+ "sequence": {
5602
+ "type": "integer",
5603
+ "format": "int32",
5604
+ "description": "The VEVENT's SEQUENCE property (RFC 5545 3.8.7.4) — the organizer's revision counter. A later message carrying the same `icalUid` with a higher value supersedes this one. `0` when the event declares none, which is the RFC default.",
5605
+ "default": 0,
5606
+ "readOnly": true
5607
+ },
5608
+ "method": {
5609
+ "allOf": [
5610
+ {
5611
+ "$ref": "#/components/schemas/RemitImap.CalendarInviteMethod"
5612
+ }
5613
+ ],
5614
+ "description": "The iTIP method the VCALENDAR declared. `None` when it declared no METHOD.",
5615
+ "default": "None",
5616
+ "readOnly": true
5617
+ },
5618
+ "source": {
5619
+ "allOf": [
5620
+ {
5621
+ "$ref": "#/components/schemas/RemitImap.CalendarSuggestionSource"
5622
+ }
5623
+ ],
5624
+ "description": "Where in the message this was read from",
5625
+ "default": "IcalendarPart",
5626
+ "readOnly": true
5627
+ },
5628
+ "state": {
5629
+ "allOf": [
5630
+ {
5631
+ "$ref": "#/components/schemas/RemitImap.CalendarSuggestionState"
5632
+ }
5633
+ ],
5634
+ "description": "What has become of this suggestion. Only `Pending` asks the user for anything.",
5635
+ "default": "Pending",
5636
+ "readOnly": true
5637
+ },
5638
+ "summary": {
5639
+ "allOf": [
5640
+ {
5641
+ "$ref": "#/components/schemas/String512"
5642
+ }
5643
+ ],
5644
+ "description": "Projection of the VEVENT's SUMMARY. `\"\"` when the event carries none.",
5645
+ "readOnly": true
5646
+ },
5647
+ "dtStart": {
5648
+ "allOf": [
5649
+ {
5650
+ "$ref": "#/components/schemas/String64"
5651
+ }
5652
+ ],
5653
+ "description": "Projection of the VEVENT's DTSTART as an ISO 8601 date-time with zone offset — a business date, not an epoch instant. An all-day event carries midnight in the event's own zone.",
5654
+ "readOnly": true
5655
+ },
5656
+ "dtEnd": {
5657
+ "allOf": [
5658
+ {
5659
+ "$ref": "#/components/schemas/String64"
5660
+ }
5661
+ ],
5662
+ "description": "Projection of the VEVENT's effective end as an ISO 8601 date-time with zone offset, resolved from DTEND or from DTSTART + DURATION. An event with neither ends when it starts (RFC 5545 3.6.1).",
5663
+ "readOnly": true
5664
+ },
5665
+ "allDay": {
5666
+ "type": "boolean",
5667
+ "description": "Whether DTSTART is a DATE rather than a DATE-TIME (RFC 5545 3.3.4) — an all-day or multi-day event, whose end is exclusive.",
5668
+ "default": false,
5669
+ "readOnly": true
5670
+ },
5671
+ "location": {
5672
+ "allOf": [
5673
+ {
5674
+ "$ref": "#/components/schemas/String512"
5675
+ }
5676
+ ],
5677
+ "description": "Projection of the VEVENT's LOCATION. `\"\"` when the event carries none.",
5678
+ "default": "",
5679
+ "readOnly": true
5680
+ },
5681
+ "organizer": {
5682
+ "allOf": [
5683
+ {
5684
+ "$ref": "#/components/schemas/String256"
5685
+ }
5686
+ ],
5687
+ "description": "Mail address of the VEVENT's ORGANIZER, without the `mailto:` scheme. `\"\"` when the event names none — which is what a `PUBLISH` typically looks like, and why dismissing with `muteSender` mutes the message's sender rather than this field.",
5688
+ "default": "",
5689
+ "readOnly": true
5690
+ },
5691
+ "zoneCertainty": {
5692
+ "allOf": [
5693
+ {
5694
+ "$ref": "#/components/schemas/RemitImap.ZoneCertainty"
5695
+ }
5696
+ ],
5697
+ "description": "How the DTSTART above was placed on the clock. `Ambiguous` means the invitation named a zone nothing could resolve, so the time shown may be hours out — a card says so rather than presenting a guess as a fact.",
5698
+ "default": "Explicit",
5699
+ "readOnly": true
5700
+ },
5701
+ "acceptedCalendarObjectId": {
5702
+ "type": "string",
5703
+ "description": "The `CalendarObject` that accepting this suggestion wrote. `\"\"` until it is accepted — the named absent state, never a missing attribute — and the resource's id afterwards, so the card can link to the event it produced.",
5704
+ "default": "",
5705
+ "readOnly": true
5706
+ },
5707
+ "createdAt": {
5708
+ "type": "integer",
5709
+ "format": "int64",
5710
+ "readOnly": true
5711
+ },
5712
+ "updatedAt": {
5713
+ "type": "integer",
5714
+ "format": "int64",
5715
+ "readOnly": true
5716
+ }
5717
+ },
5718
+ "description": "A suggestion as the API returns it. The raw `icalData` is not surfaced: a client renders the projected fields, and the bytes exist so that accepting can write them into a calendar unchanged."
5719
+ },
5720
+ "RemitImap.CalendarSuggestionSource": {
5721
+ "type": "string",
5722
+ "enum": [
5723
+ "IcalendarPart",
5724
+ "IcalendarAttachment",
5725
+ "TextHeuristic"
5726
+ ],
5727
+ "description": "Where in a message a suggestion was read from. It is what a card says to explain itself, and it is what separates a suggestion carrying real iCalendar from one inferred out of prose."
5728
+ },
5729
+ "RemitImap.CalendarSuggestionState": {
5730
+ "type": "string",
5731
+ "enum": [
5732
+ "Pending",
5733
+ "Accepted",
5734
+ "Declined",
5735
+ "Tentative",
5736
+ "Dismissed",
5737
+ "Superseded"
5738
+ ],
5739
+ "description": "What has become of a suggestion. `Pending` is the only state that asks a person for anything; every other value is a decision already taken, and nothing but an explicit act moves a suggestion out of `Pending`."
5740
+ },
5211
5741
  "RemitImap.CalendarTransparency": {
5212
5742
  "type": "string",
5213
5743
  "enum": [
@@ -6049,6 +6579,20 @@
6049
6579
  },
6050
6580
  "description": "Complete message description including all related data. Body content is delivered via the per-part `BodyPartResponse.contentUrl` (CloudFront, JWT-authorized at the edge); the legacy `bodyText`/`bodyHtml` fields were removed once content delivery cut over end-to-end (#224)."
6051
6581
  },
6582
+ "RemitImap.DismissCalendarSuggestionInput": {
6583
+ "type": "object",
6584
+ "required": [
6585
+ "muteSender"
6586
+ ],
6587
+ "properties": {
6588
+ "muteSender": {
6589
+ "type": "boolean",
6590
+ "description": "Also stop offering invitations from this message's sender, by writing a standing `Filter` rule. `false` dismisses this one card and nothing else.",
6591
+ "default": false
6592
+ }
6593
+ },
6594
+ "description": "Body of `POST /calendar-suggestions/{suggestionId}/dismiss`."
6595
+ },
6052
6596
  "RemitImap.DisplayNameCorrespondence": {
6053
6597
  "type": "string",
6054
6598
  "enum": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remit/api-openapi-spec",
3
- "version": "0.0.38",
3
+ "version": "0.0.40",
4
4
  "description": "Remit API OpenAPI 3 document, generated from TypeSpec.",
5
5
  "exports": {
6
6
  ".": "./openapi.json",