@37signals/fizzy 0.2.1 → 0.2.2

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 CHANGED
@@ -87,7 +87,7 @@ export interface FizzyClientOptions {
87
87
  /** Hooks for observability (logging, metrics, tracing) */
88
88
  hooks?: FizzyHooks;
89
89
  }
90
- export declare const VERSION = "0.2.1";
90
+ export declare const VERSION = "0.2.2";
91
91
  export declare const API_VERSION = "2026-03-01";
92
92
  /**
93
93
  * Creates a type-safe Fizzy API client with built-in middleware for:
package/dist/client.js CHANGED
@@ -31,7 +31,7 @@ import { WebhooksService } from "./generated/services/webhooks.js";
31
31
  import { MiscellaneousService } from "./generated/services/miscellaneous.js";
32
32
  const require = createRequire(import.meta.url);
33
33
  const metadata = require("./generated/metadata.json");
34
- export const VERSION = "0.2.1";
34
+ export const VERSION = "0.2.2";
35
35
  export const API_VERSION = "2026-03-01";
36
36
  const DEFAULT_BASE_URL = "https://fizzy.do";
37
37
  const DEFAULT_USER_AGENT = `fizzy-sdk-ts/${VERSION} (api:${API_VERSION})`;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://fizzy.do/schemas/sdk-metadata.json",
3
3
  "version": "1.0.0",
4
- "generated": "2026-04-30T16:53:39.959Z",
4
+ "generated": "2026-06-01T02:39:54.159Z",
5
5
  "operations": {
6
6
  "ListAccessTokens": {
7
7
  "retry": {
@@ -47,18 +47,6 @@
47
47
  ]
48
48
  }
49
49
  },
50
- "ListPins": {
51
- "retry": {
52
- "maxAttempts": 3,
53
- "baseDelayMs": 1000,
54
- "backoff": "exponential",
55
- "retryOn": [
56
- 429,
57
- 500,
58
- 503
59
- ]
60
- }
61
- },
62
50
  "CreateSession": {
63
51
  "retry": {
64
52
  "maxAttempts": 1
@@ -1093,6 +1081,33 @@
1093
1081
  "natural": true
1094
1082
  }
1095
1083
  },
1084
+ "ListPins": {
1085
+ "retry": {
1086
+ "maxAttempts": 3,
1087
+ "baseDelayMs": 1000,
1088
+ "backoff": "exponential",
1089
+ "retryOn": [
1090
+ 429,
1091
+ 500,
1092
+ 503
1093
+ ]
1094
+ }
1095
+ },
1096
+ "UpdateMyTimezone": {
1097
+ "retry": {
1098
+ "maxAttempts": 3,
1099
+ "baseDelayMs": 1000,
1100
+ "backoff": "exponential",
1101
+ "retryOn": [
1102
+ 429,
1103
+ 500,
1104
+ 503
1105
+ ]
1106
+ },
1107
+ "idempotent": {
1108
+ "natural": true
1109
+ }
1110
+ },
1096
1111
  "ListNotifications": {
1097
1112
  "retry": {
1098
1113
  "maxAttempts": 3,
@@ -409,103 +409,6 @@
409
409
  }
410
410
  }
411
411
  },
412
- "/my/pins.json": {
413
- "get": {
414
- "operationId": "ListPins",
415
- "responses": {
416
- "200": {
417
- "description": "ListPins 200 response",
418
- "content": {
419
- "application/json": {
420
- "schema": {
421
- "$ref": "#/components/schemas/ListPinsResponseContent"
422
- }
423
- }
424
- }
425
- },
426
- "400": {
427
- "description": "BadRequestError 400 response",
428
- "content": {
429
- "application/json": {
430
- "schema": {
431
- "$ref": "#/components/schemas/BadRequestErrorResponseContent"
432
- }
433
- }
434
- }
435
- },
436
- "401": {
437
- "description": "UnauthorizedError 401 response",
438
- "content": {
439
- "application/json": {
440
- "schema": {
441
- "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
442
- }
443
- }
444
- }
445
- },
446
- "403": {
447
- "description": "ForbiddenError 403 response",
448
- "content": {
449
- "application/json": {
450
- "schema": {
451
- "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
452
- }
453
- }
454
- }
455
- },
456
- "404": {
457
- "description": "NotFoundError 404 response",
458
- "content": {
459
- "application/json": {
460
- "schema": {
461
- "$ref": "#/components/schemas/NotFoundErrorResponseContent"
462
- }
463
- }
464
- }
465
- },
466
- "422": {
467
- "description": "ValidationError 422 response",
468
- "content": {
469
- "application/json": {
470
- "schema": {
471
- "$ref": "#/components/schemas/ValidationErrorResponseContent"
472
- }
473
- }
474
- }
475
- },
476
- "429": {
477
- "description": "RateLimitError 429 response",
478
- "content": {
479
- "application/json": {
480
- "schema": {
481
- "$ref": "#/components/schemas/RateLimitErrorResponseContent"
482
- }
483
- }
484
- }
485
- },
486
- "500": {
487
- "description": "InternalServerError 500 response",
488
- "content": {
489
- "application/json": {
490
- "schema": {
491
- "$ref": "#/components/schemas/InternalServerErrorResponseContent"
492
- }
493
- }
494
- }
495
- }
496
- },
497
- "x-fizzy-retry": {
498
- "maxAttempts": 3,
499
- "baseDelayMs": 1000,
500
- "backoff": "exponential",
501
- "retryOn": [
502
- 429,
503
- 500,
504
- 503
505
- ]
506
- }
507
- }
508
- },
509
412
  "/session.json": {
510
413
  "delete": {
511
414
  "operationId": "DestroySession",
@@ -9643,6 +9546,208 @@
9643
9546
  }
9644
9547
  }
9645
9548
  },
9549
+ "/my/pins.json": {
9550
+ "get": {
9551
+ "operationId": "ListPins",
9552
+ "parameters": [],
9553
+ "responses": {
9554
+ "200": {
9555
+ "description": "ListPins 200 response",
9556
+ "content": {
9557
+ "application/json": {
9558
+ "schema": {
9559
+ "$ref": "#/components/schemas/ListPinsResponseContent"
9560
+ }
9561
+ }
9562
+ }
9563
+ },
9564
+ "400": {
9565
+ "description": "BadRequestError 400 response",
9566
+ "content": {
9567
+ "application/json": {
9568
+ "schema": {
9569
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
9570
+ }
9571
+ }
9572
+ }
9573
+ },
9574
+ "401": {
9575
+ "description": "UnauthorizedError 401 response",
9576
+ "content": {
9577
+ "application/json": {
9578
+ "schema": {
9579
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
9580
+ }
9581
+ }
9582
+ }
9583
+ },
9584
+ "403": {
9585
+ "description": "ForbiddenError 403 response",
9586
+ "content": {
9587
+ "application/json": {
9588
+ "schema": {
9589
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
9590
+ }
9591
+ }
9592
+ }
9593
+ },
9594
+ "404": {
9595
+ "description": "NotFoundError 404 response",
9596
+ "content": {
9597
+ "application/json": {
9598
+ "schema": {
9599
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
9600
+ }
9601
+ }
9602
+ }
9603
+ },
9604
+ "422": {
9605
+ "description": "ValidationError 422 response",
9606
+ "content": {
9607
+ "application/json": {
9608
+ "schema": {
9609
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
9610
+ }
9611
+ }
9612
+ }
9613
+ },
9614
+ "429": {
9615
+ "description": "RateLimitError 429 response",
9616
+ "content": {
9617
+ "application/json": {
9618
+ "schema": {
9619
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
9620
+ }
9621
+ }
9622
+ }
9623
+ },
9624
+ "500": {
9625
+ "description": "InternalServerError 500 response",
9626
+ "content": {
9627
+ "application/json": {
9628
+ "schema": {
9629
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
9630
+ }
9631
+ }
9632
+ }
9633
+ }
9634
+ },
9635
+ "x-fizzy-retry": {
9636
+ "maxAttempts": 3,
9637
+ "baseDelayMs": 1000,
9638
+ "backoff": "exponential",
9639
+ "retryOn": [
9640
+ 429,
9641
+ 500,
9642
+ 503
9643
+ ]
9644
+ }
9645
+ }
9646
+ },
9647
+ "/my/timezone.json": {
9648
+ "patch": {
9649
+ "operationId": "UpdateMyTimezone",
9650
+ "requestBody": {
9651
+ "content": {
9652
+ "application/json": {
9653
+ "schema": {
9654
+ "$ref": "#/components/schemas/UpdateMyTimezoneRequestContent"
9655
+ }
9656
+ }
9657
+ },
9658
+ "required": true
9659
+ },
9660
+ "parameters": [],
9661
+ "responses": {
9662
+ "204": {
9663
+ "description": "UpdateMyTimezone 204 response"
9664
+ },
9665
+ "400": {
9666
+ "description": "BadRequestError 400 response",
9667
+ "content": {
9668
+ "application/json": {
9669
+ "schema": {
9670
+ "$ref": "#/components/schemas/BadRequestErrorResponseContent"
9671
+ }
9672
+ }
9673
+ }
9674
+ },
9675
+ "401": {
9676
+ "description": "UnauthorizedError 401 response",
9677
+ "content": {
9678
+ "application/json": {
9679
+ "schema": {
9680
+ "$ref": "#/components/schemas/UnauthorizedErrorResponseContent"
9681
+ }
9682
+ }
9683
+ }
9684
+ },
9685
+ "403": {
9686
+ "description": "ForbiddenError 403 response",
9687
+ "content": {
9688
+ "application/json": {
9689
+ "schema": {
9690
+ "$ref": "#/components/schemas/ForbiddenErrorResponseContent"
9691
+ }
9692
+ }
9693
+ }
9694
+ },
9695
+ "404": {
9696
+ "description": "NotFoundError 404 response",
9697
+ "content": {
9698
+ "application/json": {
9699
+ "schema": {
9700
+ "$ref": "#/components/schemas/NotFoundErrorResponseContent"
9701
+ }
9702
+ }
9703
+ }
9704
+ },
9705
+ "422": {
9706
+ "description": "ValidationError 422 response",
9707
+ "content": {
9708
+ "application/json": {
9709
+ "schema": {
9710
+ "$ref": "#/components/schemas/ValidationErrorResponseContent"
9711
+ }
9712
+ }
9713
+ }
9714
+ },
9715
+ "429": {
9716
+ "description": "RateLimitError 429 response",
9717
+ "content": {
9718
+ "application/json": {
9719
+ "schema": {
9720
+ "$ref": "#/components/schemas/RateLimitErrorResponseContent"
9721
+ }
9722
+ }
9723
+ }
9724
+ },
9725
+ "500": {
9726
+ "description": "InternalServerError 500 response",
9727
+ "content": {
9728
+ "application/json": {
9729
+ "schema": {
9730
+ "$ref": "#/components/schemas/InternalServerErrorResponseContent"
9731
+ }
9732
+ }
9733
+ }
9734
+ }
9735
+ },
9736
+ "x-fizzy-idempotent": {
9737
+ "natural": true
9738
+ },
9739
+ "x-fizzy-retry": {
9740
+ "maxAttempts": 3,
9741
+ "baseDelayMs": 1000,
9742
+ "backoff": "exponential",
9743
+ "retryOn": [
9744
+ 429,
9745
+ 500,
9746
+ 503
9747
+ ]
9748
+ }
9749
+ }
9750
+ },
9646
9751
  "/notifications.json": {
9647
9752
  "get": {
9648
9753
  "operationId": "ListNotifications",
@@ -13643,6 +13748,17 @@
13643
13748
  }
13644
13749
  }
13645
13750
  },
13751
+ "UpdateMyTimezoneRequestContent": {
13752
+ "type": "object",
13753
+ "properties": {
13754
+ "timezone_name": {
13755
+ "type": "string"
13756
+ }
13757
+ },
13758
+ "required": [
13759
+ "timezone_name"
13760
+ ]
13761
+ },
13646
13762
  "UpdateNotificationSettingsRequestContent": {
13647
13763
  "type": "object",
13648
13764
  "properties": {
@@ -1 +1 @@
1
- {"version":3,"file":"path-mapping.d.ts","sourceRoot":"","sources":["../../src/generated/path-mapping.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAuIpD,CAAC"}
1
+ {"version":3,"file":"path-mapping.d.ts","sourceRoot":"","sources":["../../src/generated/path-mapping.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAwIpD,CAAC"}
@@ -15,6 +15,7 @@ export const PATH_TO_OPERATION = {
15
15
  "GET:/{accountId}/account/settings.json": "GetAccountSettings",
16
16
  "PATCH:/{accountId}/account/settings.json": "UpdateAccountSettings",
17
17
  "GET:/{accountId}/activities.json": "ListActivities",
18
+ "PATCH:/{accountId}/my/timezone.json": "UpdateMyTimezone",
18
19
  "POST:/{accountId}/rails/active_storage/direct_uploads": "CreateDirectUpload",
19
20
  "GET:/{accountId}/search.json": "SearchCards",
20
21
  "GET:/my/access_tokens.json": "ListAccessTokens",
@@ -102,6 +103,8 @@ export const PATH_TO_OPERATION = {
102
103
  // Devices
103
104
  "POST:/{accountId}/devices": "RegisterDevice",
104
105
  "DELETE:/{accountId}/devices/{deviceToken}": "UnregisterDevice",
106
+ // Pins
107
+ "GET:/{accountId}/my/pins.json": "ListPins",
105
108
  // Notifications
106
109
  "GET:/{accountId}/notifications.json": "ListNotifications",
107
110
  "DELETE:/{accountId}/notifications/{notificationId}/reading.json": "UnreadNotification",
@@ -126,7 +129,5 @@ export const PATH_TO_OPERATION = {
126
129
  "DELETE:/{accountId}/users/{userId}/push_subscriptions/{pushSubscriptionId}": "DeletePushSubscription",
127
130
  "PATCH:/{accountId}/users/{userId}/role.json": "UpdateUserRole",
128
131
  "POST:/users/joins.json": "CompleteJoin",
129
- // Pins
130
- "GET:/my/pins.json": "ListPins",
131
132
  };
132
133
  //# sourceMappingURL=path-mapping.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"path-mapping.js","sourceRoot":"","sources":["../../src/generated/path-mapping.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"path-mapping.js","sourceRoot":"","sources":["../../src/generated/path-mapping.ts"],"names":[],"mappings":"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"}
@@ -16,6 +16,7 @@ export const PATH_TO_OPERATION: Record<string, string> = {
16
16
  "GET:/{accountId}/account/settings.json": "GetAccountSettings",
17
17
  "PATCH:/{accountId}/account/settings.json": "UpdateAccountSettings",
18
18
  "GET:/{accountId}/activities.json": "ListActivities",
19
+ "PATCH:/{accountId}/my/timezone.json": "UpdateMyTimezone",
19
20
  "POST:/{accountId}/rails/active_storage/direct_uploads": "CreateDirectUpload",
20
21
  "GET:/{accountId}/search.json": "SearchCards",
21
22
  "GET:/my/access_tokens.json": "ListAccessTokens",
@@ -111,6 +112,9 @@ export const PATH_TO_OPERATION: Record<string, string> = {
111
112
  "POST:/{accountId}/devices": "RegisterDevice",
112
113
  "DELETE:/{accountId}/devices/{deviceToken}": "UnregisterDevice",
113
114
 
115
+ // Pins
116
+ "GET:/{accountId}/my/pins.json": "ListPins",
117
+
114
118
  // Notifications
115
119
  "GET:/{accountId}/notifications.json": "ListNotifications",
116
120
  "DELETE:/{accountId}/notifications/{notificationId}/reading.json": "UnreadNotification",
@@ -137,7 +141,4 @@ export const PATH_TO_OPERATION: Record<string, string> = {
137
141
  "DELETE:/{accountId}/users/{userId}/push_subscriptions/{pushSubscriptionId}": "DeletePushSubscription",
138
142
  "PATCH:/{accountId}/users/{userId}/role.json": "UpdateUserRole",
139
143
  "POST:/users/joins.json": "CompleteJoin",
140
-
141
- // Pins
142
- "GET:/my/pins.json": "ListPins",
143
144
  };