Skip to content

Comments

fix: correcting resource id names#208

Merged
pengying merged 1 commit intomainfrom
02-18-fix_correcting_resource_id_names
Feb 20, 2026
Merged

fix: correcting resource id names#208
pengying merged 1 commit intomainfrom
02-18-fix_correcting_resource_id_names

Conversation

@pengying
Copy link
Contributor

@pengying pengying commented Feb 19, 2026

TL;DR

Standardized ID field names across API schemas by renaming specific identifier fields to simply id.

What changed?

Renamed identifier fields in three schema components to follow a consistent naming pattern:

  • Changed quoteId to id in the Quote schema
  • Changed jobId to id in the BulkCustomerImportJob schema
  • Changed webhookId to id in the BaseWebhook schema

These changes were applied to both the combined OpenAPI file and the individual component files.

How to test?

  1. Verify that the API documentation renders correctly with the updated field names
  2. Ensure that any client code using these schemas is updated to reference the new field names
  3. Confirm that API responses match the updated schema definitions

Why make this change?

This change standardizes our API response format by using consistent field naming conventions across all resources. Having a uniform id field instead of resource-specific identifiers (quoteId, jobId, webhookId) makes the API more intuitive and easier to work with for developers.

@pengying pengying marked this pull request as ready for review February 19, 2026 02:03
Copy link
Contributor Author

pengying commented Feb 19, 2026

This stack of pull requests is managed by Graphite. Learn more about stacking.

@github-actions
Copy link

github-actions bot commented Feb 19, 2026

✱ Stainless preview builds

This PR will update the grid SDKs with the following commit messages.

kotlin

fix(api): rename jobId/quoteId/webhookId to id in quotes/webhooks/bulk

openapi

fix(types): rename quoteId/jobId/webhookId to id in Quote/BulkCustomerImportJob/Webhook

python

fix(types): rename quote_id/webhook_id/job_id to id across models

typescript

fix(api): rename ID fields to id in quotes, bulk status, and webhook events
grid-openapi studio · code

Your SDK build had at least one "note" diagnostic.
generate ✅

grid-python studio · code

Your SDK build had at least one "note" diagnostic.
generate ✅build ✅lint ✅test ✅

pip install https://pkg.stainless.com/s/grid-python/e4e5e30c6aeb2e4de55a41a01d4c39f798b46983/grid-0.0.1-py3-none-any.whl
grid-kotlin studio · code

Your SDK build had at least one "note" diagnostic.
generate ✅build ✅lint ✅test ✅

grid-typescript studio · code

Your SDK build had at least one "note" diagnostic.
generate ✅build ✅lint ✅test ✅

npm install https://pkg.stainless.com/s/grid-typescript/5bcd4c9b599445c2eaab628a780b76c0d2b7b463/dist.tar.gz

This comment is auto-generated by GitHub Actions and is automatically kept up to date as you push.
If you push custom code to the preview branch, re-run this workflow to update the comment.
Last updated: 2026-02-20 20:41:06 UTC

@greptile-apps
Copy link
Contributor

greptile-apps bot commented Feb 19, 2026

Greptile Summary

Schema field renaming to standardize ID naming across three resources: Quote, BulkCustomerImportJob, and BaseWebhook now use id instead of resource-specific identifiers.

Changes:

  • Renamed quoteIdid in Quote schema
  • Renamed jobIdid in BulkCustomerImportJob schema
  • Renamed webhookIdid in BaseWebhook schema
  • Updated both generated bundles (openapi.yaml and mintlify/openapi.yaml)

Note: The previous review thread identified that webhook example files still reference the old field names (webhookId, quoteId, jobId) and need updating. This appears to be a known issue being tracked separately.

Confidence Score: 5/5

  • Safe to merge - clean schema refactoring with no logic changes
  • All changes are straightforward schema field renames that standardize ID naming conventions. The bundled files are auto-generated and correctly reflect the source changes. No breaking logic or security concerns.
  • No files require special attention

Important Files Changed

Filename Overview
openapi/components/schemas/quotes/Quote.yaml Renamed quoteId to id in schema definition - clean schema change
openapi/components/schemas/customers/BulkCustomerImportJob.yaml Renamed jobId to id in schema definition - clean schema change
openapi/components/schemas/webhooks/BaseWebhook.yaml Renamed webhookId to id in schema definition - clean schema change

Class Diagram

%%{init: {'theme': 'neutral'}}%%
classDiagram
    class Quote {
        -id string
        -status string
        -expiresAt datetime
        -createdAt datetime
    }
    
    class BulkCustomerImportJob {
        -id string
        -status string
        -progress object
    }
    
    class BaseWebhook {
        -id string
        -timestamp datetime
        -type string
    }
    
    class OutgoingTransaction {
        -id string
        -quoteId string
        -customerId string
    }
    
    OutgoingTransaction --> Quote : references via quoteId
    
    note for Quote "Changed: quoteId → id"
    note for BulkCustomerImportJob "Changed: jobId → id"
    note for BaseWebhook "Changed: webhookId → id"
Loading

Last reviewed commit: fa20a23

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5 files reviewed, 10 comments

Edit Code Review Agent Settings | Greptile

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 86

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 121

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/test-webhook.yaml
Line: 49

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/kyc-status.yaml
Line: 63

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/invitation-claimed.yaml
Line: 72

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 100

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 126

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 55

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 77

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/account-status.yaml
Line: 69

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

shreyav
shreyav previously approved these changes Feb 19, 2026
@pengying pengying force-pushed the 02-18-feat_fixing_transaction_schema branch from 36ee105 to c774ff0 Compare February 19, 2026 15:17
@pengying pengying force-pushed the 02-18-fix_correcting_resource_id_names branch from b804868 to 2cc78d7 Compare February 19, 2026 15:17
Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2cc78d7 is a pure rebase onto c774ff0. Approving based on @shreyav's previous approval of b804868.

Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2cc78d7 is a pure rebase onto c774ff0. Approving based on @shreyav's previous approval of b804868.

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5 files reviewed, 14 comments

Edit Code Review Agent Settings | Greptile

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not quoteId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 72

Comment:
needs to be `id` not `quoteId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 86

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not quoteId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 107

Comment:
needs to be `id` not `quoteId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 121

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not jobId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 47

Comment:
needs to be `id` not `jobId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 126

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/account-status.yaml
Line: 69

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/test-webhook.yaml
Line: 49

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/kyc-status.yaml
Line: 63

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/invitation-claimed.yaml
Line: 72

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

@pengying pengying force-pushed the 02-18-feat_fixing_transaction_schema branch from c774ff0 to eb98c72 Compare February 19, 2026 21:46
@pengying pengying force-pushed the 02-18-fix_correcting_resource_id_names branch from 2cc78d7 to dd4ab48 Compare February 19, 2026 21:46
Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dd4ab48 is a pure rebase onto eb98c72. Approving based on @shreyav's previous approval of b804868.

Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dd4ab48 is a pure rebase onto eb98c72. Approving based on @shreyav's previous approval of b804868.

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5 files reviewed, 21 comments

Edit Code Review Agent Settings | Greptile

@greptile-apps
Copy link
Contributor

greptile-apps bot commented Feb 19, 2026

Additional Comments (21)

openapi/webhooks/outgoing-payment.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 139

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 96

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/incoming-payment.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 177

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/account-status.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/account-status.yaml
Line: 88

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/test-webhook.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/test-webhook.yaml
Line: 69

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/kyc-status.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/kyc-status.yaml
Line: 81

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/invitation-claimed.yaml
Update error description to reference id instead of webhookId

      description: Conflict - Webhook has already been processed (duplicate id)
Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/invitation-claimed.yaml
Line: 90

Comment:
Update error description to reference `id` instead of `webhookId`

```suggestion
      description: Conflict - Webhook has already been processed (duplicate id)
```

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
Should be id not quoteId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 72

Comment:
Should be `id` not `quoteId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 86

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
Should be id not quoteId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 107

Comment:
Should be `id` not `quoteId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 121

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
Should be id not jobId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 47

Comment:
Should be `id` not `jobId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 55

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
Should be id not jobId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 62

Comment:
Should be `id` not `jobId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 77

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/incoming-payment.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 100

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/incoming-payment.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 126

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/account-status.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/account-status.yaml
Line: 69

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/test-webhook.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/test-webhook.yaml
Line: 49

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/kyc-status.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/kyc-status.yaml
Line: 63

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/invitation-claimed.yaml
Should be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/invitation-claimed.yaml
Line: 72

Comment:
Should be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

@pengying pengying force-pushed the 02-18-feat_fixing_transaction_schema branch from eb98c72 to 8ad3ce8 Compare February 19, 2026 21:55
@pengying pengying force-pushed the 02-18-fix_correcting_resource_id_names branch from dd4ab48 to 2d628a2 Compare February 19, 2026 21:55
Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2d628a2 is a pure rebase onto 8ad3ce8. Approving based on @shreyav's previous approval of b804868.

Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2d628a2 is a pure rebase onto 8ad3ce8. Approving based on @shreyav's previous approval of b804868.

Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5 files reviewed, 14 comments

Edit Code Review Agent Settings | Greptile

@greptile-apps
Copy link
Contributor

greptile-apps bot commented Feb 19, 2026

Additional Comments (14)

openapi/webhooks/bulk-upload.yaml
needs to be id not jobId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 47

Comment:
needs to be `id` not `jobId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
needs to be id not jobId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 62

Comment:
needs to be `id` not `jobId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 55

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/bulk-upload.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/bulk-upload.yaml
Line: 77

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
needs to be id not quoteId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 72

Comment:
needs to be `id` not `quoteId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
needs to be id not quoteId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 107

Comment:
needs to be `id` not `quoteId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 86

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/outgoing-payment.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/outgoing-payment.yaml
Line: 121

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/incoming-payment.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 100

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/incoming-payment.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/incoming-payment.yaml
Line: 126

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/account-status.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/account-status.yaml
Line: 69

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/test-webhook.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/test-webhook.yaml
Line: 49

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/kyc-status.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/kyc-status.yaml
Line: 63

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

openapi/webhooks/invitation-claimed.yaml
needs to be id not webhookId

Prompt To Fix With AI
This is a comment left during a code review.
Path: openapi/webhooks/invitation-claimed.yaml
Line: 72

Comment:
needs to be `id` not `webhookId`

How can I resolve this? If you propose a fix, please make it concise.

@pengying pengying force-pushed the 02-18-feat_fixing_transaction_schema branch from 8ad3ce8 to 33406c9 Compare February 20, 2026 18:46
@pengying pengying force-pushed the 02-18-fix_correcting_resource_id_names branch from 2d628a2 to d2022db Compare February 20, 2026 18:46
Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

d2022db is a pure rebase onto 33406c9. Approving based on @shreyav's previous approval of b804868.

Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

d2022db is a pure rebase onto 33406c9. Approving based on @shreyav's previous approval of b804868.

@pengying pengying changed the base branch from 02-18-feat_fixing_transaction_schema to graphite-base/208 February 20, 2026 20:08
Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

d2022db is a pure rebase onto 33406c9. Approving based on @shreyav's previous approval of b804868.

@pengying pengying force-pushed the 02-18-fix_correcting_resource_id_names branch from d2022db to fa20a23 Compare February 20, 2026 20:26
Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fa20a23 is a pure rebase onto 5b33dc7. Approving based on @shreyav's previous approval of b804868.

restamp-bot[bot]
restamp-bot bot previously approved these changes Feb 20, 2026
Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fa20a23 is a pure rebase onto 5b33dc7. Approving based on @shreyav's previous approval of b804868.

@graphite-app graphite-app bot changed the base branch from graphite-base/208 to main February 20, 2026 20:26
@graphite-app graphite-app bot dismissed stale reviews from restamp-bot[bot] and shreyav February 20, 2026 20:26

The base branch was changed.

@graphite-app
Copy link

graphite-app bot commented Feb 20, 2026

Merge activity

  • Feb 20, 8:26 PM UTC: Graphite rebased this pull request, because this pull request is set to merge when ready.
  • Feb 20, 8:27 PM UTC: @pengying merged this pull request with Graphite.

Copy link

@restamp-bot restamp-bot bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fa20a23 is a pure rebase onto 5b33dc7. Approving based on @shreyav's previous approval of b804868.

@pengying pengying merged commit 6af194b into main Feb 20, 2026
9 checks passed
@pengying pengying deleted the 02-18-fix_correcting_resource_id_names branch February 20, 2026 20:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants