Skip to content

Commit c029bf6

Browse files
fix effects
1 parent 2d630af commit c029bf6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+132
-236
lines changed

figma_rest_api_file/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "figma-api"
3-
version = "0.31.1"
3+
version = "0.31.2"
44
55
description = "This is the OpenAPI specification for the [Figma REST API](https://www.figma.com/developers/api). Note: we are releasing the OpenAPI specification as a beta given the large surface area and complexity of the REST API. If you notice any inaccuracies with the specification, please [file an issue](https://github.com/figma/rest-api-spec/issues)."
66
# Override this license by providing a License Object in the OpenAPI.

figma_rest_api_file/docs/BaseNoiseEffect.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**r#type** | **String** | The string literal 'NOISE' representing the effect's type. Always check the type before reading other properties. |
87
**blend_mode** | [**models::BlendMode**](BlendMode.md) | Blend mode of the noise effect |
98
**noise_size** | **f64** | The size of the noise effect |
109
**density** | **f64** | The density of the noise effect |

figma_rest_api_file/docs/BooleanOperationNode.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ Name | Type | Description | Notes
5151
**transition_node_id** | Option<**String**> | Node ID of node to transition to in prototyping | [optional]
5252
**transition_duration** | Option<**f64**> | The duration of the prototyping transition on this node (in milliseconds). This will override the default transition duration on the prototype, for this node. | [optional]
5353
**transition_easing** | Option<[**models::EasingType**](EasingType.md)> | The easing curve used in the prototyping transition on this node. | [optional]
54-
**interactions** | Option<[**Vec<models::Interaction>**](Interaction.md)> | | [optional]
5554
**boolean_operation** | **String** | A string enum indicating the type of boolean operation applied. |
5655

5756
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

figma_rest_api_file/docs/ComponentNode.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ Name | Type | Description | Notes
7474
**transition_node_id** | Option<**String**> | Node ID of node to transition to in prototyping | [optional]
7575
**transition_duration** | Option<**f64**> | The duration of the prototyping transition on this node (in milliseconds). This will override the default transition duration on the prototype, for this node. | [optional]
7676
**transition_easing** | Option<[**models::EasingType**](EasingType.md)> | The easing curve used in the prototyping transition on this node. | [optional]
77-
**interactions** | Option<[**Vec<models::Interaction>**](Interaction.md)> | | [optional]
7877
**individual_stroke_weights** | Option<[**models::StrokeWeights**](StrokeWeights.md)> | An object including the top, bottom, left, and right stroke weights. Only returned if individual stroke weights are used. | [optional]
7978
**component_property_definitions** | Option<[**std::collections::HashMap<String, models::ComponentPropertyDefinition>**](ComponentPropertyDefinition.md)> | A mapping of name to `ComponentPropertyDefinition` for every component property on this component. Each property has a type, defaultValue, and other optional values. | [optional]
8079

figma_rest_api_file/docs/ComponentSetNode.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ Name | Type | Description | Notes
7474
**transition_node_id** | Option<**String**> | Node ID of node to transition to in prototyping | [optional]
7575
**transition_duration** | Option<**f64**> | The duration of the prototyping transition on this node (in milliseconds). This will override the default transition duration on the prototype, for this node. | [optional]
7676
**transition_easing** | Option<[**models::EasingType**](EasingType.md)> | The easing curve used in the prototyping transition on this node. | [optional]
77-
**interactions** | Option<[**Vec<models::Interaction>**](Interaction.md)> | | [optional]
7877
**individual_stroke_weights** | Option<[**models::StrokeWeights**](StrokeWeights.md)> | An object including the top, bottom, left, and right stroke weights. Only returned if individual stroke weights are used. | [optional]
7978
**component_property_definitions** | Option<[**std::collections::HashMap<String, models::ComponentPropertyDefinition>**](ComponentPropertyDefinition.md)> | A mapping of name to `ComponentPropertyDefinition` for every component property on this component. Each property has a type, defaultValue, and other optional values. | [optional]
8079

figma_rest_api_file/docs/CornerRadiusShapeTraits.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ Name | Type | Description | Notes
5050
**transition_node_id** | Option<**String**> | Node ID of node to transition to in prototyping | [optional]
5151
**transition_duration** | Option<**f64**> | The duration of the prototyping transition on this node (in milliseconds). This will override the default transition duration on the prototype, for this node. | [optional]
5252
**transition_easing** | Option<[**models::EasingType**](EasingType.md)> | The easing curve used in the prototyping transition on this node. | [optional]
53-
**interactions** | Option<[**Vec<models::Interaction>**](Interaction.md)> | | [optional]
5453
**corner_radius** | Option<**f64**> | Radius of each corner if a single radius is set for all corners | [optional][default to 0]
5554
**corner_smoothing** | Option<**f64**> | A value that lets you control how \"smooth\" the corners are. Ranges from 0 to 1. 0 is the default and means that the corner is perfectly circular. A value of 0.6 means the corner matches the iOS 7 \"squircle\" icon shape. Other values produce various other curves. | [optional]
5655
**rectangle_corner_radii** | Option<**Vec<f64>**> | Array of length 4 of the radius of each corner of the frame, starting in the top left and proceeding clockwise. Values are given in the order top-left, top-right, bottom-right, bottom-left. | [optional]

figma_rest_api_file/docs/DefaultShapeTraits.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ Name | Type | Description | Notes
5050
**transition_node_id** | Option<**String**> | Node ID of node to transition to in prototyping | [optional]
5151
**transition_duration** | Option<**f64**> | The duration of the prototyping transition on this node (in milliseconds). This will override the default transition duration on the prototype, for this node. | [optional]
5252
**transition_easing** | Option<[**models::EasingType**](EasingType.md)> | The easing curve used in the prototyping transition on this node. | [optional]
53-
**interactions** | Option<[**Vec<models::Interaction>**](Interaction.md)> | | [optional]
5453

5554
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
5655

figma_rest_api_file/docs/DuotoneNoiseEffect.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**r#type** | **String** | The string literal 'NOISE' representing the effect's type. Always check the type before reading other properties. |
87
**blend_mode** | [**models::BlendMode**](BlendMode.md) | Blend mode of the noise effect |
98
**noise_size** | **f64** | The size of the noise effect |
109
**density** | **f64** | The density of the noise effect |

figma_rest_api_file/docs/EllipseNode.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ Name | Type | Description | Notes
5050
**transition_node_id** | Option<**String**> | Node ID of node to transition to in prototyping | [optional]
5151
**transition_duration** | Option<**f64**> | The duration of the prototyping transition on this node (in milliseconds). This will override the default transition duration on the prototype, for this node. | [optional]
5252
**transition_easing** | Option<[**models::EasingType**](EasingType.md)> | The easing curve used in the prototyping transition on this node. | [optional]
53-
**interactions** | Option<[**Vec<models::Interaction>**](Interaction.md)> | | [optional]
5453
**arc_data** | [**models::ArcData**](ArcData.md) | |
5554

5655
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

figma_rest_api_file/docs/FrameNode.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ Name | Type | Description | Notes
7474
**transition_node_id** | Option<**String**> | Node ID of node to transition to in prototyping | [optional]
7575
**transition_duration** | Option<**f64**> | The duration of the prototyping transition on this node (in milliseconds). This will override the default transition duration on the prototype, for this node. | [optional]
7676
**transition_easing** | Option<[**models::EasingType**](EasingType.md)> | The easing curve used in the prototyping transition on this node. | [optional]
77-
**interactions** | Option<[**Vec<models::Interaction>**](Interaction.md)> | | [optional]
7877
**individual_stroke_weights** | Option<[**models::StrokeWeights**](StrokeWeights.md)> | An object including the top, bottom, left, and right stroke weights. Only returned if individual stroke weights are used. | [optional]
7978

8079
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

0 commit comments

Comments
 (0)