Skip to content

Commit 2e4f565

Browse files
Update OpenAPI specification for private preview
1 parent e00324e commit 2e4f565

2 files changed

Lines changed: 167 additions & 1 deletion

File tree

openapi/spec3.private_preview.sdk.json

Lines changed: 95 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84072,6 +84072,12 @@
8407284072
"description": "The type of event that occurred.",
8407384073
"maxLength": 5000,
8407484074
"type": "string"
84075+
},
84076+
"login_succeeded": {
84077+
"$ref": "#/components/schemas/radar_account_evaluation_resource_login_succeeded_data"
84078+
},
84079+
"registration_succeeded": {
84080+
"$ref": "#/components/schemas/radar_account_evaluation_resource_registration_succeeded_data"
8407584081
}
8407684082
},
8407784083
"required": [
@@ -84082,12 +84088,16 @@
8408284088
"type": "object",
8408384089
"x-expandableFields": [
8408484090
"login_failed",
84085-
"registration_failed"
84091+
"login_succeeded",
84092+
"registration_failed",
84093+
"registration_succeeded"
8408684094
],
8408784095
"x-stripeMostCommon": [
8408884096
"login_failed",
84097+
"login_succeeded",
8408984098
"occurred_at",
8409084099
"registration_failed",
84100+
"registration_succeeded",
8409184101
"type"
8409284102
]
8409384103
},
@@ -111068,6 +111078,46 @@
111068111078
"amount_total"
111069111079
]
111070111080
},
111081+
"radar_account_evaluation_resource_login_succeeded_data": {
111082+
"description": "Data about a succeeded login event.",
111083+
"properties": {
111084+
"qualification": {
111085+
"description": "The qualification for a login success.",
111086+
"maxLength": 5000,
111087+
"nullable": true,
111088+
"type": "string"
111089+
}
111090+
},
111091+
"required": [
111092+
"qualification"
111093+
],
111094+
"title": "RadarAccountEvaluationResourceLoginSucceededData",
111095+
"type": "object",
111096+
"x-expandableFields": [],
111097+
"x-stripeMostCommon": [
111098+
"qualification"
111099+
]
111100+
},
111101+
"radar_account_evaluation_resource_registration_succeeded_data": {
111102+
"description": "Data about a succeeded registration event.",
111103+
"properties": {
111104+
"qualification": {
111105+
"description": "The qualification for a registration success.",
111106+
"maxLength": 5000,
111107+
"nullable": true,
111108+
"type": "string"
111109+
}
111110+
},
111111+
"required": [
111112+
"qualification"
111113+
],
111114+
"title": "RadarAccountEvaluationResourceRegistrationSucceededData",
111115+
"type": "object",
111116+
"x-expandableFields": [],
111117+
"x-stripeMostCommon": [
111118+
"qualification"
111119+
]
111120+
},
111071111121
"subscription_payment_method_options_bizum": {
111072111122
"description": "",
111073111123
"properties": {
@@ -264918,6 +264968,14 @@
264918264968
"registration_failed": {
264919264969
"explode": true,
264920264970
"style": "deepObject"
264971+
},
264972+
"login_succeeded": {
264973+
"explode": true,
264974+
"style": "deepObject"
264975+
},
264976+
"registration_succeeded": {
264977+
"explode": true,
264978+
"style": "deepObject"
264921264979
}
264922264980
},
264923264981
"schema": {
@@ -264982,6 +265040,40 @@
264982265040
"registration_succeeded"
264983265041
],
264984265042
"type": "string"
265043+
},
265044+
"login_succeeded": {
265045+
"description": "Event payload for login_succeeded.",
265046+
"properties": {
265047+
"qualification": {
265048+
"description": "An optional qualification for a login success.",
265049+
"enum": [
265050+
"suspected_account_sharing"
265051+
],
265052+
"type": "string"
265053+
}
265054+
},
265055+
"title": "login_succeeded",
265056+
"type": "object",
265057+
"x-stripeMostCommon": [
265058+
"qualification"
265059+
]
265060+
},
265061+
"registration_succeeded": {
265062+
"description": "Event payload for registration_succeeded.",
265063+
"properties": {
265064+
"qualification": {
265065+
"description": "An optional qualification for a registration success.",
265066+
"enum": [
265067+
"suspected_multi_accounting"
265068+
],
265069+
"type": "string"
265070+
}
265071+
},
265072+
"title": "registration_succeeded",
265073+
"type": "object",
265074+
"x-stripeMostCommon": [
265075+
"qualification"
265076+
]
264985265077
}
264986265078
},
264987265079
"required": [
@@ -264990,7 +265082,9 @@
264990265082
"type": "object",
264991265083
"x-stripeMostCommon": [
264992265084
"login_failed",
265085+
"login_succeeded",
264993265086
"registration_failed",
265087+
"registration_succeeded",
264994265088
"type"
264995265089
]
264996265090
}

openapi/spec3.private_preview.sdk.yaml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76309,18 +76309,28 @@ components:
7630976309
description: The type of event that occurred.
7631076310
maxLength: 5000
7631176311
type: string
76312+
login_succeeded:
76313+
$ref: >-
76314+
#/components/schemas/radar_account_evaluation_resource_login_succeeded_data
76315+
registration_succeeded:
76316+
$ref: >-
76317+
#/components/schemas/radar_account_evaluation_resource_registration_succeeded_data
7631276318
required:
7631376319
- occurred_at
7631476320
- type
7631576321
title: RadarAccountEvaluationResourceAccountEvaluationEvent
7631676322
type: object
7631776323
x-expandableFields:
7631876324
- login_failed
76325+
- login_succeeded
7631976326
- registration_failed
76327+
- registration_succeeded
7632076328
x-stripeMostCommon:
7632176329
- login_failed
76330+
- login_succeeded
7632276331
- occurred_at
7632376332
- registration_failed
76333+
- registration_succeeded
7632476334
- type
7632576335
radar_account_evaluation_resource_account_evaluation_signals:
7632676336
description: >-
@@ -99590,6 +99600,36 @@ components:
9959099600
- amount_subtotal
9959199601
- amount_tax
9959299602
- amount_total
99603+
radar_account_evaluation_resource_login_succeeded_data:
99604+
description: Data about a succeeded login event.
99605+
properties:
99606+
qualification:
99607+
description: The qualification for a login success.
99608+
maxLength: 5000
99609+
nullable: true
99610+
type: string
99611+
required:
99612+
- qualification
99613+
title: RadarAccountEvaluationResourceLoginSucceededData
99614+
type: object
99615+
x-expandableFields: []
99616+
x-stripeMostCommon:
99617+
- qualification
99618+
radar_account_evaluation_resource_registration_succeeded_data:
99619+
description: Data about a succeeded registration event.
99620+
properties:
99621+
qualification:
99622+
description: The qualification for a registration success.
99623+
maxLength: 5000
99624+
nullable: true
99625+
type: string
99626+
required:
99627+
- qualification
99628+
title: RadarAccountEvaluationResourceRegistrationSucceededData
99629+
type: object
99630+
x-expandableFields: []
99631+
x-stripeMostCommon:
99632+
- qualification
9959399633
subscription_payment_method_options_bizum:
9959499634
description: ''
9959599635
properties:
@@ -247761,6 +247801,12 @@ paths:
247761247801
registration_failed:
247762247802
explode: true
247763247803
style: deepObject
247804+
login_succeeded:
247805+
explode: true
247806+
style: deepObject
247807+
registration_succeeded:
247808+
explode: true
247809+
style: deepObject
247764247810
schema:
247765247811
additionalProperties: false
247766247812
properties:
@@ -247808,12 +247854,38 @@ paths:
247808247854
- registration_failed
247809247855
- registration_succeeded
247810247856
type: string
247857+
login_succeeded:
247858+
description: Event payload for login_succeeded.
247859+
properties:
247860+
qualification:
247861+
description: An optional qualification for a login success.
247862+
enum:
247863+
- suspected_account_sharing
247864+
type: string
247865+
title: login_succeeded
247866+
type: object
247867+
x-stripeMostCommon:
247868+
- qualification
247869+
registration_succeeded:
247870+
description: Event payload for registration_succeeded.
247871+
properties:
247872+
qualification:
247873+
description: An optional qualification for a registration success.
247874+
enum:
247875+
- suspected_multi_accounting
247876+
type: string
247877+
title: registration_succeeded
247878+
type: object
247879+
x-stripeMostCommon:
247880+
- qualification
247811247881
required:
247812247882
- type
247813247883
type: object
247814247884
x-stripeMostCommon:
247815247885
- login_failed
247886+
- login_succeeded
247816247887
- registration_failed
247888+
- registration_succeeded
247817247889
- type
247818247890
required: true
247819247891
responses:

0 commit comments

Comments
 (0)