From 6846446ffa4ca525ad7793c029276fbca754f8b8 Mon Sep 17 00:00:00 2001 From: Vernon Keenan Date: Fri, 28 Jun 2024 23:09:29 +0000 Subject: [PATCH] feat: Add AppExchange URL field to CompanyProduct model The code changes include adding the `AppExchange` field to the `CompanyProduct` model in the `sfgate` package. This field is used to store the Salesforce AppExchange URL. --- api/sfgate/sfgate_models/company_product.go | 3 +++ swagger/external/sf-gate-vernonkeenan.yaml | 4 ++++ swagger/sf-gate-vernonkeenan.yaml | 4 ++++ 3 files changed, 11 insertions(+) diff --git a/api/sfgate/sfgate_models/company_product.go b/api/sfgate/sfgate_models/company_product.go index a723555..f3d654b 100644 --- a/api/sfgate/sfgate_models/company_product.go +++ b/api/sfgate/sfgate_models/company_product.go @@ -24,6 +24,9 @@ type CompanyProduct struct { // ID of the Company that owns this Product AccountID string `json:"AccountID,omitempty"` + // Salesforce AppExchange URL + AppExchange *string `json:"AppExchange,omitempty"` + // Created By User ID CreatedByID *string `json:"CreatedByID,omitempty"` diff --git a/swagger/external/sf-gate-vernonkeenan.yaml b/swagger/external/sf-gate-vernonkeenan.yaml index 25684a9..9420ea6 100644 --- a/swagger/external/sf-gate-vernonkeenan.yaml +++ b/swagger/external/sf-gate-vernonkeenan.yaml @@ -3455,6 +3455,10 @@ definitions: AccountID: description: ID of the Company that owns this Product type: string + AppExchange: + description: Salesforce AppExchange URL + type: string + x-nullable: true CreatedByID: description: Created By User ID type: string diff --git a/swagger/sf-gate-vernonkeenan.yaml b/swagger/sf-gate-vernonkeenan.yaml index 7b93b8a..521bea7 100644 --- a/swagger/sf-gate-vernonkeenan.yaml +++ b/swagger/sf-gate-vernonkeenan.yaml @@ -3455,6 +3455,10 @@ definitions: AccountID: description: ID of the Company that owns this Product type: string + AppExchange: + description: Salesforce AppExchange URL + type: string + x-nullable: true CreatedByID: description: Created By User ID type: string