Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions GoogleAPIClientForREST.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,11 @@ Pod::Spec.new do |s|
sp.source_files = 'Sources/GeneratedServices/Cloudchannel/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Cloudchannel/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudCommercePartnerProcurementService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudCommercePartnerProcurementService/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudCommercePartnerProcurementService/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudComposer' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudComposer/**/*.{h,m}'
Expand Down
10 changes: 10 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,10 @@ let package = Package(
name: "GoogleAPIClientForREST_Cloudchannel",
targets: ["GoogleAPIClientForREST_Cloudchannel"]
),
.library(
name: "GoogleAPIClientForREST_CloudCommercePartnerProcurementService",
targets: ["GoogleAPIClientForREST_CloudCommercePartnerProcurementService"]
),
.library(
name: "GoogleAPIClientForREST_CloudComposer",
targets: ["GoogleAPIClientForREST_CloudComposer"]
Expand Down Expand Up @@ -1689,6 +1693,12 @@ let package = Package(
path: "Sources/GeneratedServices/Cloudchannel",
publicHeadersPath: "Public"
),
.target(
name: "GoogleAPIClientForREST_CloudCommercePartnerProcurementService",
dependencies: ["GoogleAPIClientForRESTCore"],
path: "Sources/GeneratedServices/CloudCommercePartnerProcurementService",
publicHeadersPath: "Public"
),
.target(
name: "GoogleAPIClientForREST_CloudComposer",
dependencies: ["GoogleAPIClientForRESTCore"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1065,8 +1065,8 @@ FOUNDATION_EXTERN NSString * const kGTLRAPIGatewayViewFull;
@interface GTLRAPIGatewayQuery_ProjectsLocationsList : GTLRAPIGatewayQuery

/**
* Optional. A list of extra location types that should be used as conditions
* for controlling the visibility of the locations.
* Optional. Do not use this field. It is unsupported and is ignored unless
* explicitly documented otherwise. This is primarily for internal usage.
*/
@property(nonatomic, strong, nullable) NSArray<NSString *> *extraLocationTypes;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3026,8 +3026,8 @@ NS_ASSUME_NONNULL_BEGIN
@interface GTLRAPIhubQuery_ProjectsLocationsList : GTLRAPIhubQuery

/**
* Optional. A list of extra location types that should be used as conditions
* for controlling the visibility of the locations.
* Optional. Do not use this field. It is unsupported and is ignored unless
* explicitly documented otherwise. This is primarily for internal usage.
*/
@property(nonatomic, strong, nullable) NSArray<NSString *> *extraLocationTypes;

Expand Down
Loading