imagekitio 4.8.0 → 4.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/README.md +2 -2
- data/lib/imagekitio/client.rb +4 -0
- data/lib/imagekitio/models/custom_metadata_field.rb +11 -1
- data/lib/imagekitio/models/custom_metadata_field_create_params.rb +11 -1
- data/lib/imagekitio/models/custom_metadata_field_update_params.rb +12 -1
- data/lib/imagekitio/models/named_transformation.rb +60 -0
- data/lib/imagekitio/models/named_transformation_create_params.rb +45 -0
- data/lib/imagekitio/models/named_transformation_delete_params.rb +22 -0
- data/lib/imagekitio/models/named_transformation_get_params.rb +22 -0
- data/lib/imagekitio/models/named_transformation_list_params.rb +14 -0
- data/lib/imagekitio/models/named_transformation_list_response.rb +9 -0
- data/lib/imagekitio/models/named_transformation_update_params.rb +53 -0
- data/lib/imagekitio/models.rb +12 -0
- data/lib/imagekitio/resources/custom_metadata_fields.rb +8 -3
- data/lib/imagekitio/resources/named_transformations.rb +151 -0
- data/lib/imagekitio/version.rb +1 -1
- data/lib/imagekitio.rb +8 -0
- data/rbi/imagekitio/client.rbi +3 -0
- data/rbi/imagekitio/models/custom_metadata_field.rbi +18 -3
- data/rbi/imagekitio/models/custom_metadata_field_create_params.rbi +15 -0
- data/rbi/imagekitio/models/custom_metadata_field_update_params.rbi +17 -0
- data/rbi/imagekitio/models/named_transformation.rbi +81 -0
- data/rbi/imagekitio/models/named_transformation_create_params.rbi +73 -0
- data/rbi/imagekitio/models/named_transformation_delete_params.rbi +43 -0
- data/rbi/imagekitio/models/named_transformation_get_params.rbi +43 -0
- data/rbi/imagekitio/models/named_transformation_list_params.rbi +30 -0
- data/rbi/imagekitio/models/named_transformation_list_response.rbi +11 -0
- data/rbi/imagekitio/models/named_transformation_update_params.rbi +87 -0
- data/rbi/imagekitio/models.rbi +17 -0
- data/rbi/imagekitio/resources/custom_metadata_fields.rbi +13 -1
- data/rbi/imagekitio/resources/named_transformations.rbi +119 -0
- data/sig/imagekitio/client.rbs +2 -0
- data/sig/imagekitio/models/custom_metadata_field.rbs +10 -3
- data/sig/imagekitio/models/custom_metadata_field_create_params.rbs +8 -1
- data/sig/imagekitio/models/custom_metadata_field_update_params.rbs +7 -0
- data/sig/imagekitio/models/named_transformation.rbs +40 -0
- data/sig/imagekitio/models/named_transformation_create_params.rbs +34 -0
- data/sig/imagekitio/models/named_transformation_delete_params.rbs +23 -0
- data/sig/imagekitio/models/named_transformation_get_params.rbs +23 -0
- data/sig/imagekitio/models/named_transformation_list_params.rbs +15 -0
- data/sig/imagekitio/models/named_transformation_list_response.rbs +8 -0
- data/sig/imagekitio/models/named_transformation_update_params.rbs +42 -0
- data/sig/imagekitio/models.rbs +12 -0
- data/sig/imagekitio/resources/custom_metadata_fields.rbs +2 -0
- data/sig/imagekitio/resources/named_transformations.rbs +33 -0
- metadata +26 -2
data/sig/imagekitio/client.rbs
CHANGED
|
@@ -20,6 +20,8 @@ module Imagekitio
|
|
|
20
20
|
|
|
21
21
|
attr_reader saved_extensions: Imagekitio::Resources::SavedExtensions
|
|
22
22
|
|
|
23
|
+
attr_reader named_transformations: Imagekitio::Resources::NamedTransformations
|
|
24
|
+
|
|
23
25
|
attr_reader assets: Imagekitio::Resources::Assets
|
|
24
26
|
|
|
25
27
|
attr_reader cache: Imagekitio::Resources::Cache
|
|
@@ -5,7 +5,8 @@ module Imagekitio
|
|
|
5
5
|
id: String,
|
|
6
6
|
label: String,
|
|
7
7
|
name: String,
|
|
8
|
-
schema: Imagekitio::CustomMetadataField::Schema
|
|
8
|
+
schema: Imagekitio::CustomMetadataField::Schema,
|
|
9
|
+
description: String
|
|
9
10
|
}
|
|
10
11
|
|
|
11
12
|
class CustomMetadataField < Imagekitio::Internal::Type::BaseModel
|
|
@@ -17,18 +18,24 @@ module Imagekitio
|
|
|
17
18
|
|
|
18
19
|
attr_accessor schema: Imagekitio::CustomMetadataField::Schema
|
|
19
20
|
|
|
21
|
+
attr_reader description: String?
|
|
22
|
+
|
|
23
|
+
def description=: (String) -> String
|
|
24
|
+
|
|
20
25
|
def initialize: (
|
|
21
26
|
id: String,
|
|
22
27
|
label: String,
|
|
23
28
|
name: String,
|
|
24
|
-
schema: Imagekitio::CustomMetadataField::Schema
|
|
29
|
+
schema: Imagekitio::CustomMetadataField::Schema,
|
|
30
|
+
?description: String
|
|
25
31
|
) -> void
|
|
26
32
|
|
|
27
33
|
def to_hash: -> {
|
|
28
34
|
id: String,
|
|
29
35
|
label: String,
|
|
30
36
|
name: String,
|
|
31
|
-
schema: Imagekitio::CustomMetadataField::Schema
|
|
37
|
+
schema: Imagekitio::CustomMetadataField::Schema,
|
|
38
|
+
description: String
|
|
32
39
|
}
|
|
33
40
|
|
|
34
41
|
type schema =
|
|
@@ -4,7 +4,8 @@ module Imagekitio
|
|
|
4
4
|
{
|
|
5
5
|
label: String,
|
|
6
6
|
name: String,
|
|
7
|
-
schema: Imagekitio::CustomMetadataFieldCreateParams::Schema
|
|
7
|
+
schema: Imagekitio::CustomMetadataFieldCreateParams::Schema,
|
|
8
|
+
description: String
|
|
8
9
|
}
|
|
9
10
|
& Imagekitio::Internal::Type::request_parameters
|
|
10
11
|
|
|
@@ -18,10 +19,15 @@ module Imagekitio
|
|
|
18
19
|
|
|
19
20
|
attr_accessor schema: Imagekitio::CustomMetadataFieldCreateParams::Schema
|
|
20
21
|
|
|
22
|
+
attr_reader description: String?
|
|
23
|
+
|
|
24
|
+
def description=: (String) -> String
|
|
25
|
+
|
|
21
26
|
def initialize: (
|
|
22
27
|
label: String,
|
|
23
28
|
name: String,
|
|
24
29
|
schema: Imagekitio::CustomMetadataFieldCreateParams::Schema,
|
|
30
|
+
?description: String,
|
|
25
31
|
?request_options: Imagekitio::request_opts
|
|
26
32
|
) -> void
|
|
27
33
|
|
|
@@ -29,6 +35,7 @@ module Imagekitio
|
|
|
29
35
|
label: String,
|
|
30
36
|
name: String,
|
|
31
37
|
schema: Imagekitio::CustomMetadataFieldCreateParams::Schema,
|
|
38
|
+
description: String,
|
|
32
39
|
request_options: Imagekitio::RequestOptions
|
|
33
40
|
}
|
|
34
41
|
|
|
@@ -3,6 +3,7 @@ module Imagekitio
|
|
|
3
3
|
type custom_metadata_field_update_params =
|
|
4
4
|
{
|
|
5
5
|
id: String,
|
|
6
|
+
description: String,
|
|
6
7
|
label: String,
|
|
7
8
|
schema: Imagekitio::CustomMetadataFieldUpdateParams::Schema
|
|
8
9
|
}
|
|
@@ -14,6 +15,10 @@ module Imagekitio
|
|
|
14
15
|
|
|
15
16
|
attr_accessor id: String
|
|
16
17
|
|
|
18
|
+
attr_reader description: String?
|
|
19
|
+
|
|
20
|
+
def description=: (String) -> String
|
|
21
|
+
|
|
17
22
|
attr_reader label: String?
|
|
18
23
|
|
|
19
24
|
def label=: (String) -> String
|
|
@@ -26,6 +31,7 @@ module Imagekitio
|
|
|
26
31
|
|
|
27
32
|
def initialize: (
|
|
28
33
|
id: String,
|
|
34
|
+
?description: String,
|
|
29
35
|
?label: String,
|
|
30
36
|
?schema: Imagekitio::CustomMetadataFieldUpdateParams::Schema,
|
|
31
37
|
?request_options: Imagekitio::request_opts
|
|
@@ -33,6 +39,7 @@ module Imagekitio
|
|
|
33
39
|
|
|
34
40
|
def to_hash: -> {
|
|
35
41
|
id: String,
|
|
42
|
+
description: String,
|
|
36
43
|
label: String,
|
|
37
44
|
schema: Imagekitio::CustomMetadataFieldUpdateParams::Schema,
|
|
38
45
|
request_options: Imagekitio::RequestOptions
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
module Imagekitio
|
|
2
|
+
module Models
|
|
3
|
+
type named_transformation =
|
|
4
|
+
{
|
|
5
|
+
id: String,
|
|
6
|
+
created_at: Time,
|
|
7
|
+
enabled: bool,
|
|
8
|
+
name: String,
|
|
9
|
+
transformation: String
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
class NamedTransformation < Imagekitio::Internal::Type::BaseModel
|
|
13
|
+
attr_accessor id: String
|
|
14
|
+
|
|
15
|
+
attr_accessor created_at: Time
|
|
16
|
+
|
|
17
|
+
attr_accessor enabled: bool
|
|
18
|
+
|
|
19
|
+
attr_accessor name: String
|
|
20
|
+
|
|
21
|
+
attr_accessor transformation: String
|
|
22
|
+
|
|
23
|
+
def initialize: (
|
|
24
|
+
id: String,
|
|
25
|
+
created_at: Time,
|
|
26
|
+
enabled: bool,
|
|
27
|
+
name: String,
|
|
28
|
+
transformation: String
|
|
29
|
+
) -> void
|
|
30
|
+
|
|
31
|
+
def to_hash: -> {
|
|
32
|
+
id: String,
|
|
33
|
+
created_at: Time,
|
|
34
|
+
enabled: bool,
|
|
35
|
+
name: String,
|
|
36
|
+
transformation: String
|
|
37
|
+
}
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
module Imagekitio
|
|
2
|
+
module Models
|
|
3
|
+
type named_transformation_create_params =
|
|
4
|
+
{ name: String, transformation: String, enabled: bool }
|
|
5
|
+
& Imagekitio::Internal::Type::request_parameters
|
|
6
|
+
|
|
7
|
+
class NamedTransformationCreateParams < Imagekitio::Internal::Type::BaseModel
|
|
8
|
+
extend Imagekitio::Internal::Type::RequestParameters::Converter
|
|
9
|
+
include Imagekitio::Internal::Type::RequestParameters
|
|
10
|
+
|
|
11
|
+
attr_accessor name: String
|
|
12
|
+
|
|
13
|
+
attr_accessor transformation: String
|
|
14
|
+
|
|
15
|
+
attr_reader enabled: bool?
|
|
16
|
+
|
|
17
|
+
def enabled=: (bool) -> bool
|
|
18
|
+
|
|
19
|
+
def initialize: (
|
|
20
|
+
name: String,
|
|
21
|
+
transformation: String,
|
|
22
|
+
?enabled: bool,
|
|
23
|
+
?request_options: Imagekitio::request_opts
|
|
24
|
+
) -> void
|
|
25
|
+
|
|
26
|
+
def to_hash: -> {
|
|
27
|
+
name: String,
|
|
28
|
+
transformation: String,
|
|
29
|
+
enabled: bool,
|
|
30
|
+
request_options: Imagekitio::RequestOptions
|
|
31
|
+
}
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
module Imagekitio
|
|
2
|
+
module Models
|
|
3
|
+
type named_transformation_delete_params =
|
|
4
|
+
{ id: String } & Imagekitio::Internal::Type::request_parameters
|
|
5
|
+
|
|
6
|
+
class NamedTransformationDeleteParams < Imagekitio::Internal::Type::BaseModel
|
|
7
|
+
extend Imagekitio::Internal::Type::RequestParameters::Converter
|
|
8
|
+
include Imagekitio::Internal::Type::RequestParameters
|
|
9
|
+
|
|
10
|
+
attr_accessor id: String
|
|
11
|
+
|
|
12
|
+
def initialize: (
|
|
13
|
+
id: String,
|
|
14
|
+
?request_options: Imagekitio::request_opts
|
|
15
|
+
) -> void
|
|
16
|
+
|
|
17
|
+
def to_hash: -> {
|
|
18
|
+
id: String,
|
|
19
|
+
request_options: Imagekitio::RequestOptions
|
|
20
|
+
}
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
module Imagekitio
|
|
2
|
+
module Models
|
|
3
|
+
type named_transformation_get_params =
|
|
4
|
+
{ id: String } & Imagekitio::Internal::Type::request_parameters
|
|
5
|
+
|
|
6
|
+
class NamedTransformationGetParams < Imagekitio::Internal::Type::BaseModel
|
|
7
|
+
extend Imagekitio::Internal::Type::RequestParameters::Converter
|
|
8
|
+
include Imagekitio::Internal::Type::RequestParameters
|
|
9
|
+
|
|
10
|
+
attr_accessor id: String
|
|
11
|
+
|
|
12
|
+
def initialize: (
|
|
13
|
+
id: String,
|
|
14
|
+
?request_options: Imagekitio::request_opts
|
|
15
|
+
) -> void
|
|
16
|
+
|
|
17
|
+
def to_hash: -> {
|
|
18
|
+
id: String,
|
|
19
|
+
request_options: Imagekitio::RequestOptions
|
|
20
|
+
}
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
module Imagekitio
|
|
2
|
+
module Models
|
|
3
|
+
type named_transformation_list_params =
|
|
4
|
+
{ } & Imagekitio::Internal::Type::request_parameters
|
|
5
|
+
|
|
6
|
+
class NamedTransformationListParams < Imagekitio::Internal::Type::BaseModel
|
|
7
|
+
extend Imagekitio::Internal::Type::RequestParameters::Converter
|
|
8
|
+
include Imagekitio::Internal::Type::RequestParameters
|
|
9
|
+
|
|
10
|
+
def initialize: (?request_options: Imagekitio::request_opts) -> void
|
|
11
|
+
|
|
12
|
+
def to_hash: -> { request_options: Imagekitio::RequestOptions }
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
end
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
module Imagekitio
|
|
2
|
+
module Models
|
|
3
|
+
type named_transformation_update_params =
|
|
4
|
+
{ id: String, enabled: bool, name: String, transformation: String }
|
|
5
|
+
& Imagekitio::Internal::Type::request_parameters
|
|
6
|
+
|
|
7
|
+
class NamedTransformationUpdateParams < Imagekitio::Internal::Type::BaseModel
|
|
8
|
+
extend Imagekitio::Internal::Type::RequestParameters::Converter
|
|
9
|
+
include Imagekitio::Internal::Type::RequestParameters
|
|
10
|
+
|
|
11
|
+
attr_accessor id: String
|
|
12
|
+
|
|
13
|
+
attr_reader enabled: bool?
|
|
14
|
+
|
|
15
|
+
def enabled=: (bool) -> bool
|
|
16
|
+
|
|
17
|
+
attr_reader name: String?
|
|
18
|
+
|
|
19
|
+
def name=: (String) -> String
|
|
20
|
+
|
|
21
|
+
attr_reader transformation: String?
|
|
22
|
+
|
|
23
|
+
def transformation=: (String) -> String
|
|
24
|
+
|
|
25
|
+
def initialize: (
|
|
26
|
+
id: String,
|
|
27
|
+
?enabled: bool,
|
|
28
|
+
?name: String,
|
|
29
|
+
?transformation: String,
|
|
30
|
+
?request_options: Imagekitio::request_opts
|
|
31
|
+
) -> void
|
|
32
|
+
|
|
33
|
+
def to_hash: -> {
|
|
34
|
+
id: String,
|
|
35
|
+
enabled: bool,
|
|
36
|
+
name: String,
|
|
37
|
+
transformation: String,
|
|
38
|
+
request_options: Imagekitio::RequestOptions
|
|
39
|
+
}
|
|
40
|
+
end
|
|
41
|
+
end
|
|
42
|
+
end
|
data/sig/imagekitio/models.rbs
CHANGED
|
@@ -81,6 +81,18 @@ module Imagekitio
|
|
|
81
81
|
|
|
82
82
|
class Metadata = Imagekitio::Models::Metadata
|
|
83
83
|
|
|
84
|
+
class NamedTransformation = Imagekitio::Models::NamedTransformation
|
|
85
|
+
|
|
86
|
+
class NamedTransformationCreateParams = Imagekitio::Models::NamedTransformationCreateParams
|
|
87
|
+
|
|
88
|
+
class NamedTransformationDeleteParams = Imagekitio::Models::NamedTransformationDeleteParams
|
|
89
|
+
|
|
90
|
+
class NamedTransformationGetParams = Imagekitio::Models::NamedTransformationGetParams
|
|
91
|
+
|
|
92
|
+
class NamedTransformationListParams = Imagekitio::Models::NamedTransformationListParams
|
|
93
|
+
|
|
94
|
+
class NamedTransformationUpdateParams = Imagekitio::Models::NamedTransformationUpdateParams
|
|
95
|
+
|
|
84
96
|
module Overlay = Imagekitio::Models::Overlay
|
|
85
97
|
|
|
86
98
|
class OverlayPosition = Imagekitio::Models::OverlayPosition
|
|
@@ -5,11 +5,13 @@ module Imagekitio
|
|
|
5
5
|
label: String,
|
|
6
6
|
name: String,
|
|
7
7
|
schema: Imagekitio::CustomMetadataFieldCreateParams::Schema,
|
|
8
|
+
?description: String,
|
|
8
9
|
?request_options: Imagekitio::request_opts
|
|
9
10
|
) -> Imagekitio::CustomMetadataField
|
|
10
11
|
|
|
11
12
|
def update: (
|
|
12
13
|
String id,
|
|
14
|
+
?description: String,
|
|
13
15
|
?label: String,
|
|
14
16
|
?schema: Imagekitio::CustomMetadataFieldUpdateParams::Schema,
|
|
15
17
|
?request_options: Imagekitio::request_opts
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
module Imagekitio
|
|
2
|
+
module Resources
|
|
3
|
+
class NamedTransformations
|
|
4
|
+
def create: (
|
|
5
|
+
name: String,
|
|
6
|
+
transformation: String,
|
|
7
|
+
?enabled: bool,
|
|
8
|
+
?request_options: Imagekitio::request_opts
|
|
9
|
+
) -> Imagekitio::NamedTransformation
|
|
10
|
+
|
|
11
|
+
def update: (
|
|
12
|
+
String id,
|
|
13
|
+
?enabled: bool,
|
|
14
|
+
?name: String,
|
|
15
|
+
?transformation: String,
|
|
16
|
+
?request_options: Imagekitio::request_opts
|
|
17
|
+
) -> Imagekitio::NamedTransformation
|
|
18
|
+
|
|
19
|
+
def list: (
|
|
20
|
+
?request_options: Imagekitio::request_opts
|
|
21
|
+
) -> Imagekitio::Models::named_transformation_list_response
|
|
22
|
+
|
|
23
|
+
def delete: (String id, ?request_options: Imagekitio::request_opts) -> nil
|
|
24
|
+
|
|
25
|
+
def get: (
|
|
26
|
+
String id,
|
|
27
|
+
?request_options: Imagekitio::request_opts
|
|
28
|
+
) -> Imagekitio::NamedTransformation
|
|
29
|
+
|
|
30
|
+
def initialize: (client: Imagekitio::Client) -> void
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: imagekitio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ImageKit
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-08-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
@@ -181,6 +181,13 @@ files:
|
|
|
181
181
|
- lib/imagekitio/models/get_image_attributes_options.rb
|
|
182
182
|
- lib/imagekitio/models/image_overlay.rb
|
|
183
183
|
- lib/imagekitio/models/metadata.rb
|
|
184
|
+
- lib/imagekitio/models/named_transformation.rb
|
|
185
|
+
- lib/imagekitio/models/named_transformation_create_params.rb
|
|
186
|
+
- lib/imagekitio/models/named_transformation_delete_params.rb
|
|
187
|
+
- lib/imagekitio/models/named_transformation_get_params.rb
|
|
188
|
+
- lib/imagekitio/models/named_transformation_list_params.rb
|
|
189
|
+
- lib/imagekitio/models/named_transformation_list_response.rb
|
|
190
|
+
- lib/imagekitio/models/named_transformation_update_params.rb
|
|
184
191
|
- lib/imagekitio/models/overlay.rb
|
|
185
192
|
- lib/imagekitio/models/overlay_position.rb
|
|
186
193
|
- lib/imagekitio/models/overlay_timing.rb
|
|
@@ -236,6 +243,7 @@ files:
|
|
|
236
243
|
- lib/imagekitio/resources/files/versions.rb
|
|
237
244
|
- lib/imagekitio/resources/folders.rb
|
|
238
245
|
- lib/imagekitio/resources/folders/job.rb
|
|
246
|
+
- lib/imagekitio/resources/named_transformations.rb
|
|
239
247
|
- lib/imagekitio/resources/saved_extensions.rb
|
|
240
248
|
- lib/imagekitio/resources/webhooks.rb
|
|
241
249
|
- lib/imagekitio/version.rb
|
|
@@ -354,6 +362,13 @@ files:
|
|
|
354
362
|
- rbi/imagekitio/models/get_image_attributes_options.rbi
|
|
355
363
|
- rbi/imagekitio/models/image_overlay.rbi
|
|
356
364
|
- rbi/imagekitio/models/metadata.rbi
|
|
365
|
+
- rbi/imagekitio/models/named_transformation.rbi
|
|
366
|
+
- rbi/imagekitio/models/named_transformation_create_params.rbi
|
|
367
|
+
- rbi/imagekitio/models/named_transformation_delete_params.rbi
|
|
368
|
+
- rbi/imagekitio/models/named_transformation_get_params.rbi
|
|
369
|
+
- rbi/imagekitio/models/named_transformation_list_params.rbi
|
|
370
|
+
- rbi/imagekitio/models/named_transformation_list_response.rbi
|
|
371
|
+
- rbi/imagekitio/models/named_transformation_update_params.rbi
|
|
357
372
|
- rbi/imagekitio/models/overlay.rbi
|
|
358
373
|
- rbi/imagekitio/models/overlay_position.rbi
|
|
359
374
|
- rbi/imagekitio/models/overlay_timing.rbi
|
|
@@ -409,6 +424,7 @@ files:
|
|
|
409
424
|
- rbi/imagekitio/resources/files/versions.rbi
|
|
410
425
|
- rbi/imagekitio/resources/folders.rbi
|
|
411
426
|
- rbi/imagekitio/resources/folders/job.rbi
|
|
427
|
+
- rbi/imagekitio/resources/named_transformations.rbi
|
|
412
428
|
- rbi/imagekitio/resources/saved_extensions.rbi
|
|
413
429
|
- rbi/imagekitio/resources/webhooks.rbi
|
|
414
430
|
- rbi/imagekitio/version.rbi
|
|
@@ -526,6 +542,13 @@ files:
|
|
|
526
542
|
- sig/imagekitio/models/get_image_attributes_options.rbs
|
|
527
543
|
- sig/imagekitio/models/image_overlay.rbs
|
|
528
544
|
- sig/imagekitio/models/metadata.rbs
|
|
545
|
+
- sig/imagekitio/models/named_transformation.rbs
|
|
546
|
+
- sig/imagekitio/models/named_transformation_create_params.rbs
|
|
547
|
+
- sig/imagekitio/models/named_transformation_delete_params.rbs
|
|
548
|
+
- sig/imagekitio/models/named_transformation_get_params.rbs
|
|
549
|
+
- sig/imagekitio/models/named_transformation_list_params.rbs
|
|
550
|
+
- sig/imagekitio/models/named_transformation_list_response.rbs
|
|
551
|
+
- sig/imagekitio/models/named_transformation_update_params.rbs
|
|
529
552
|
- sig/imagekitio/models/overlay.rbs
|
|
530
553
|
- sig/imagekitio/models/overlay_position.rbs
|
|
531
554
|
- sig/imagekitio/models/overlay_timing.rbs
|
|
@@ -581,6 +604,7 @@ files:
|
|
|
581
604
|
- sig/imagekitio/resources/files/versions.rbs
|
|
582
605
|
- sig/imagekitio/resources/folders.rbs
|
|
583
606
|
- sig/imagekitio/resources/folders/job.rbs
|
|
607
|
+
- sig/imagekitio/resources/named_transformations.rbs
|
|
584
608
|
- sig/imagekitio/resources/saved_extensions.rbs
|
|
585
609
|
- sig/imagekitio/resources/webhooks.rbs
|
|
586
610
|
- sig/imagekitio/version.rbs
|