@getyetty-sdk/pennylane 2026.5.13 → 2026.5.23
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/index.d.mts +190 -8
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +80 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -746,6 +746,41 @@ const WebhookSubscriptions__ResponseSchema = {
|
|
|
746
746
|
type: "boolean",
|
|
747
747
|
example: true
|
|
748
748
|
},
|
|
749
|
+
disabled_at: {
|
|
750
|
+
description: "Timestamp when the subscription was disabled",
|
|
751
|
+
type: "string",
|
|
752
|
+
format: "date-time",
|
|
753
|
+
nullable: true,
|
|
754
|
+
example: "2023-08-07T14:23:12.000Z"
|
|
755
|
+
},
|
|
756
|
+
disabled_reason: {
|
|
757
|
+
description: "Reason the subscription was disabled.\n- `permanent_error`: disabled due to a permanent delivery error (e.g. HTTP 400).\n- `repeated_failure`: disabled after repeated delivery failures over a sustained period.\n- `manual`: disabled manually via the API.\n",
|
|
758
|
+
type: "string",
|
|
759
|
+
nullable: true,
|
|
760
|
+
enum: [
|
|
761
|
+
"permanent_error",
|
|
762
|
+
"repeated_failure",
|
|
763
|
+
"manual"
|
|
764
|
+
]
|
|
765
|
+
},
|
|
766
|
+
last_failure_status: {
|
|
767
|
+
description: "HTTP status code of the last failed delivery attempt",
|
|
768
|
+
type: "integer",
|
|
769
|
+
nullable: true,
|
|
770
|
+
example: 500
|
|
771
|
+
},
|
|
772
|
+
last_failure_at: {
|
|
773
|
+
description: "Timestamp of the last failed delivery attempt",
|
|
774
|
+
type: "string",
|
|
775
|
+
format: "date-time",
|
|
776
|
+
nullable: true,
|
|
777
|
+
example: "2023-08-07T14:23:12.000Z"
|
|
778
|
+
},
|
|
779
|
+
consecutive_failures: {
|
|
780
|
+
description: "Number of consecutive delivery failures since the last successful delivery",
|
|
781
|
+
type: "integer",
|
|
782
|
+
example: 3
|
|
783
|
+
},
|
|
749
784
|
created_at: {
|
|
750
785
|
description: "Creation date of the webhook subscription",
|
|
751
786
|
type: "string",
|
|
@@ -764,6 +799,11 @@ const WebhookSubscriptions__ResponseSchema = {
|
|
|
764
799
|
"callback_url",
|
|
765
800
|
"events",
|
|
766
801
|
"enabled",
|
|
802
|
+
"disabled_at",
|
|
803
|
+
"disabled_reason",
|
|
804
|
+
"last_failure_status",
|
|
805
|
+
"last_failure_at",
|
|
806
|
+
"consecutive_failures",
|
|
767
807
|
"created_at",
|
|
768
808
|
"updated_at"
|
|
769
809
|
]
|
|
@@ -808,6 +848,41 @@ const WebhookSubscriptions__IndexResponseSchema = {
|
|
|
808
848
|
type: "boolean",
|
|
809
849
|
example: true
|
|
810
850
|
},
|
|
851
|
+
disabled_at: {
|
|
852
|
+
description: "Timestamp when the subscription was disabled",
|
|
853
|
+
type: "string",
|
|
854
|
+
format: "date-time",
|
|
855
|
+
nullable: true,
|
|
856
|
+
example: "2023-08-07T14:23:12.000Z"
|
|
857
|
+
},
|
|
858
|
+
disabled_reason: {
|
|
859
|
+
description: "Reason the subscription was disabled.\n- `permanent_error`: disabled due to a permanent delivery error (e.g. HTTP 400).\n- `repeated_failure`: disabled after repeated delivery failures over a sustained period.\n- `manual`: disabled manually via the API.\n",
|
|
860
|
+
type: "string",
|
|
861
|
+
nullable: true,
|
|
862
|
+
enum: [
|
|
863
|
+
"permanent_error",
|
|
864
|
+
"repeated_failure",
|
|
865
|
+
"manual"
|
|
866
|
+
]
|
|
867
|
+
},
|
|
868
|
+
last_failure_status: {
|
|
869
|
+
description: "HTTP status code of the last failed delivery attempt",
|
|
870
|
+
type: "integer",
|
|
871
|
+
nullable: true,
|
|
872
|
+
example: 500
|
|
873
|
+
},
|
|
874
|
+
last_failure_at: {
|
|
875
|
+
description: "Timestamp of the last failed delivery attempt",
|
|
876
|
+
type: "string",
|
|
877
|
+
format: "date-time",
|
|
878
|
+
nullable: true,
|
|
879
|
+
example: "2023-08-07T14:23:12.000Z"
|
|
880
|
+
},
|
|
881
|
+
consecutive_failures: {
|
|
882
|
+
description: "Number of consecutive delivery failures since the last successful delivery",
|
|
883
|
+
type: "integer",
|
|
884
|
+
example: 3
|
|
885
|
+
},
|
|
811
886
|
created_at: {
|
|
812
887
|
description: "Creation date of the webhook subscription",
|
|
813
888
|
type: "string",
|
|
@@ -826,6 +901,11 @@ const WebhookSubscriptions__IndexResponseSchema = {
|
|
|
826
901
|
"callback_url",
|
|
827
902
|
"events",
|
|
828
903
|
"enabled",
|
|
904
|
+
"disabled_at",
|
|
905
|
+
"disabled_reason",
|
|
906
|
+
"last_failure_status",
|
|
907
|
+
"last_failure_at",
|
|
908
|
+
"consecutive_failures",
|
|
829
909
|
"created_at",
|
|
830
910
|
"updated_at"
|
|
831
911
|
]
|