Skip to content

Commit b675252

Browse files
feat(api): api update
1 parent b62a012 commit b675252

File tree

5 files changed

+2
-131
lines changed

5 files changed

+2
-131
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 232
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-aad9dbf54c66e9aa31deefc9ea241e0c1c2155207f61d606e94478bb5d650c38.yml
3-
openapi_spec_hash: f5e641b92f8a3feaefad8bdbc278db77
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-a466a501f72055942acea051bd2b1c735b70d65f3dd2710c5484e6125c8b640d.yml
3+
openapi_spec_hash: d68789006ab658b380a02da2f03599b4
44
config_hash: 27e44ed36b9c5617b580ead7231a594a

src/PendingTransactions/PendingTransaction/Source.php

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
use Increase\PendingTransactions\PendingTransaction\Source\AccountTransferInstruction;
1111
use Increase\PendingTransactions\PendingTransaction\Source\ACHTransferInstruction;
1212
use Increase\PendingTransactions\PendingTransaction\Source\BlockchainOfframpTransferInstruction;
13-
use Increase\PendingTransactions\PendingTransaction\Source\BlockchainOfframpTransferIntention;
1413
use Increase\PendingTransactions\PendingTransaction\Source\BlockchainOnrampTransferInstruction;
1514
use Increase\PendingTransactions\PendingTransaction\Source\CardAuthorization;
1615
use Increase\PendingTransactions\PendingTransaction\Source\CardPushTransferInstruction;
@@ -31,7 +30,6 @@
3130
* @phpstan-import-type AccountTransferInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\AccountTransferInstruction
3231
* @phpstan-import-type ACHTransferInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\ACHTransferInstruction
3332
* @phpstan-import-type BlockchainOfframpTransferInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\BlockchainOfframpTransferInstruction
34-
* @phpstan-import-type BlockchainOfframpTransferIntentionShape from \Increase\PendingTransactions\PendingTransaction\Source\BlockchainOfframpTransferIntention
3533
* @phpstan-import-type BlockchainOnrampTransferInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\BlockchainOnrampTransferInstruction
3634
* @phpstan-import-type CardAuthorizationShape from \Increase\PendingTransactions\PendingTransaction\Source\CardAuthorization
3735
* @phpstan-import-type CardPushTransferInstructionShape from \Increase\PendingTransactions\PendingTransaction\Source\CardPushTransferInstruction
@@ -49,7 +47,6 @@
4947
* accountTransferInstruction: null|AccountTransferInstruction|AccountTransferInstructionShape,
5048
* achTransferInstruction: null|ACHTransferInstruction|ACHTransferInstructionShape,
5149
* blockchainOfframpTransferInstruction: null|BlockchainOfframpTransferInstruction|BlockchainOfframpTransferInstructionShape,
52-
* blockchainOfframpTransferIntention: null|BlockchainOfframpTransferIntention|BlockchainOfframpTransferIntentionShape,
5350
* blockchainOnrampTransferInstruction: null|BlockchainOnrampTransferInstruction|BlockchainOnrampTransferInstructionShape,
5451
* cardAuthorization: null|CardAuthorization|CardAuthorizationShape,
5552
* cardPushTransferInstruction: null|CardPushTransferInstruction|CardPushTransferInstructionShape,
@@ -89,12 +86,6 @@ final class Source implements BaseModel
8986
#[Required('blockchain_offramp_transfer_instruction')]
9087
public ?BlockchainOfframpTransferInstruction $blockchainOfframpTransferInstruction;
9188

92-
/**
93-
* A Blockchain Off-Ramp Transfer Intention object. This field will be present in the JSON response if and only if `category` is equal to `blockchain_offramp_transfer_intention`.
94-
*/
95-
#[Required('blockchain_offramp_transfer_intention')]
96-
public ?BlockchainOfframpTransferIntention $blockchainOfframpTransferIntention;
97-
9889
/**
9990
* A Blockchain On-Ramp Transfer Instruction object. This field will be present in the JSON response if and only if `category` is equal to `blockchain_onramp_transfer_instruction`.
10091
*/
@@ -192,7 +183,6 @@ final class Source implements BaseModel
192183
* accountTransferInstruction: ...,
193184
* achTransferInstruction: ...,
194185
* blockchainOfframpTransferInstruction: ...,
195-
* blockchainOfframpTransferIntention: ...,
196186
* blockchainOnrampTransferInstruction: ...,
197187
* cardAuthorization: ...,
198188
* cardPushTransferInstruction: ...,
@@ -217,7 +207,6 @@ final class Source implements BaseModel
217207
* ->withAccountTransferInstruction(...)
218208
* ->withACHTransferInstruction(...)
219209
* ->withBlockchainOfframpTransferInstruction(...)
220-
* ->withBlockchainOfframpTransferIntention(...)
221210
* ->withBlockchainOnrampTransferInstruction(...)
222211
* ->withCardAuthorization(...)
223212
* ->withCardPushTransferInstruction(...)
@@ -247,7 +236,6 @@ public function __construct()
247236
* @param AccountTransferInstruction|AccountTransferInstructionShape|null $accountTransferInstruction
248237
* @param ACHTransferInstruction|ACHTransferInstructionShape|null $achTransferInstruction
249238
* @param BlockchainOfframpTransferInstruction|BlockchainOfframpTransferInstructionShape|null $blockchainOfframpTransferInstruction
250-
* @param BlockchainOfframpTransferIntention|BlockchainOfframpTransferIntentionShape|null $blockchainOfframpTransferIntention
251239
* @param BlockchainOnrampTransferInstruction|BlockchainOnrampTransferInstructionShape|null $blockchainOnrampTransferInstruction
252240
* @param CardAuthorization|CardAuthorizationShape|null $cardAuthorization
253241
* @param CardPushTransferInstruction|CardPushTransferInstructionShape|null $cardPushTransferInstruction
@@ -267,7 +255,6 @@ public static function with(
267255
AccountTransferInstruction|array|null $accountTransferInstruction,
268256
ACHTransferInstruction|array|null $achTransferInstruction,
269257
BlockchainOfframpTransferInstruction|array|null $blockchainOfframpTransferInstruction,
270-
BlockchainOfframpTransferIntention|array|null $blockchainOfframpTransferIntention,
271258
BlockchainOnrampTransferInstruction|array|null $blockchainOnrampTransferInstruction,
272259
CardAuthorization|array|null $cardAuthorization,
273260
CardPushTransferInstruction|array|null $cardPushTransferInstruction,
@@ -288,7 +275,6 @@ public static function with(
288275
$self['accountTransferInstruction'] = $accountTransferInstruction;
289276
$self['achTransferInstruction'] = $achTransferInstruction;
290277
$self['blockchainOfframpTransferInstruction'] = $blockchainOfframpTransferInstruction;
291-
$self['blockchainOfframpTransferIntention'] = $blockchainOfframpTransferIntention;
292278
$self['blockchainOnrampTransferInstruction'] = $blockchainOnrampTransferInstruction;
293279
$self['cardAuthorization'] = $cardAuthorization;
294280
$self['cardPushTransferInstruction'] = $cardPushTransferInstruction;
@@ -349,20 +335,6 @@ public function withBlockchainOfframpTransferInstruction(
349335
return $self;
350336
}
351337

352-
/**
353-
* A Blockchain Off-Ramp Transfer Intention object. This field will be present in the JSON response if and only if `category` is equal to `blockchain_offramp_transfer_intention`.
354-
*
355-
* @param BlockchainOfframpTransferIntention|BlockchainOfframpTransferIntentionShape|null $blockchainOfframpTransferIntention
356-
*/
357-
public function withBlockchainOfframpTransferIntention(
358-
BlockchainOfframpTransferIntention|array|null $blockchainOfframpTransferIntention,
359-
): self {
360-
$self = clone $this;
361-
$self['blockchainOfframpTransferIntention'] = $blockchainOfframpTransferIntention;
362-
363-
return $self;
364-
}
365-
366338
/**
367339
* A Blockchain On-Ramp Transfer Instruction object. This field will be present in the JSON response if and only if `category` is equal to `blockchain_onramp_transfer_instruction`.
368340
*

src/PendingTransactions/PendingTransaction/Source/BlockchainOfframpTransferIntention.php

Lines changed: 0 additions & 97 deletions
This file was deleted.

src/PendingTransactions/PendingTransaction/Source/Category.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,5 @@ enum Category: string
3939

4040
case BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION = 'blockchain_offramp_transfer_instruction';
4141

42-
case BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION = 'blockchain_offramp_transfer_intention';
43-
4442
case OTHER = 'other';
4543
}

src/PendingTransactions/PendingTransactionListParams/Category/In.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,5 @@ enum In: string
3636

3737
case BLOCKCHAIN_OFFRAMP_TRANSFER_INSTRUCTION = 'blockchain_offramp_transfer_instruction';
3838

39-
case BLOCKCHAIN_OFFRAMP_TRANSFER_INTENTION = 'blockchain_offramp_transfer_intention';
40-
4139
case OTHER = 'other';
4240
}

0 commit comments

Comments
 (0)