Skip to content

Commit e085950

Browse files
feat(api): re-add rules metadata to tokenization events
fix(api): adjust Auth Rules spec for better SDK structure feat(api): remove deprecated fields from Cardholder Authentication object
1 parent 94425db commit e085950

File tree

9 files changed

+283
-1904
lines changed

9 files changed

+283
-1904
lines changed

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 168
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-2cfd81dfd3ad2c5a4e98161e54dbac5ddee125c058f9163f29aad4632cadf08d.yml
3-
openapi_spec_hash: 400a2563ad969fba47b3eb0f02372b1e
4-
config_hash: f5a16e702bac54729afed6e50b0de3ff
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-c3f6c23018d70fd1b259b21cfd377b5d905872f0d3c5ce2cdb8013f4b6daa338.yml
3+
openapi_spec_hash: b551344da9d29eb4c5374874ed84a9b0
4+
config_hash: 012f050e575d1bbfe8db56a9eeaa5fcd

api.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,12 @@ Types:
7272
- <code><a href="./src/resources/auth-rules/v2/v2.ts">AuthRuleCondition</a></code>
7373
- <code><a href="./src/resources/auth-rules/v2/v2.ts">Conditional3DSActionParameters</a></code>
7474
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ConditionalAttribute</a></code>
75+
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ConditionalAuthorizationActionParameters</a></code>
7576
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ConditionalBlockParameters</a></code>
7677
- <code><a href="./src/resources/auth-rules/v2/v2.ts">MerchantLockParameters</a></code>
7778
- <code><a href="./src/resources/auth-rules/v2/v2.ts">RuleStats</a></code>
7879
- <code><a href="./src/resources/auth-rules/v2/v2.ts">VelocityLimitParams</a></code>
79-
- <code><a href="./src/resources/auth-rules/v2/v2.ts">VelocityLimitParamsPeriodWindow</a></code>
80+
- <code><a href="./src/resources/auth-rules/v2/v2.ts">VelocityLimitPeriod</a></code>
8081
- <code><a href="./src/resources/auth-rules/v2/v2.ts">V2CreateResponse</a></code>
8182
- <code><a href="./src/resources/auth-rules/v2/v2.ts">V2RetrieveResponse</a></code>
8283
- <code><a href="./src/resources/auth-rules/v2/v2.ts">V2UpdateResponse</a></code>

src/resources/auth-rules/auth-rules.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
AuthRuleCondition,
88
Conditional3DSActionParameters,
99
ConditionalAttribute,
10+
ConditionalAuthorizationActionParameters,
1011
ConditionalBlockParameters,
1112
MerchantLockParameters,
1213
RuleStats,
@@ -27,7 +28,7 @@ import {
2728
V2UpdateParams,
2829
V2UpdateResponse,
2930
VelocityLimitParams,
30-
VelocityLimitParamsPeriodWindow,
31+
VelocityLimitPeriod,
3132
} from './v2/v2';
3233

3334
export class AuthRules extends APIResource {
@@ -44,11 +45,12 @@ export declare namespace AuthRules {
4445
type AuthRuleCondition as AuthRuleCondition,
4546
type Conditional3DSActionParameters as Conditional3DSActionParameters,
4647
type ConditionalAttribute as ConditionalAttribute,
48+
type ConditionalAuthorizationActionParameters as ConditionalAuthorizationActionParameters,
4749
type ConditionalBlockParameters as ConditionalBlockParameters,
4850
type MerchantLockParameters as MerchantLockParameters,
4951
type RuleStats as RuleStats,
5052
type VelocityLimitParams as VelocityLimitParams,
51-
type VelocityLimitParamsPeriodWindow as VelocityLimitParamsPeriodWindow,
53+
type VelocityLimitPeriod as VelocityLimitPeriod,
5254
type V2CreateResponse as V2CreateResponse,
5355
type V2RetrieveResponse as V2RetrieveResponse,
5456
type V2UpdateResponse as V2UpdateResponse,

src/resources/auth-rules/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ export {
88
type AuthRuleCondition,
99
type Conditional3DSActionParameters,
1010
type ConditionalAttribute,
11+
type ConditionalAuthorizationActionParameters,
1112
type ConditionalBlockParameters,
1213
type MerchantLockParameters,
1314
type RuleStats,
1415
type VelocityLimitParams,
15-
type VelocityLimitParamsPeriodWindow,
16+
type VelocityLimitPeriod,
1617
type V2CreateResponse,
1718
type V2RetrieveResponse,
1819
type V2UpdateResponse,

src/resources/auth-rules/v2/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ export {
1313
type AuthRuleCondition,
1414
type Conditional3DSActionParameters,
1515
type ConditionalAttribute,
16+
type ConditionalAuthorizationActionParameters,
1617
type ConditionalBlockParameters,
1718
type MerchantLockParameters,
1819
type RuleStats,
1920
type VelocityLimitParams,
20-
type VelocityLimitParamsPeriodWindow,
21+
type VelocityLimitPeriod,
2122
type V2CreateResponse,
2223
type V2RetrieveResponse,
2324
type V2UpdateResponse,

0 commit comments

Comments
 (0)