Skip to content

Releases: tabby-ai/tabby-ios-sdk

1.7.4

25 Apr 04:50
3dfb2fe
Compare
Choose a tag to compare

Features

  • Privacy manifest file

1.7.3 Network service refactoring and analytics support

01 Mar 11:22
Compare
Choose a tag to compare

Updates

  • Refactored Network Layer
  • Added Anaylytics Service
  • Added Analytics events
    • Snippet Card Rendered
    • Learn More Clicked
    • Learn More Pop Up Opened
    • Learn More Pop Up Closed
  • Structure of the parameters and constants
  • Optimized widgets

1.7.2 Generic meta field

02 Oct 12:15
945fb53
Compare
Choose a tag to compare

1.7.2 Updates

You can now include additional metadata for payments in two ways:

meta Field for Payment

Dictionary Way

Payment(...,
    meta: [
        "order": [
            "id": 123,
            "items": [
                [
                    "id": 123,
                    "title": "Product",
                    "quantity": 1,
                ],
                [
                    "id": 124,
                    "title": "Product 2",
                    "quantity": 2,
                ]
            ]
        ]
    ], ...)

Codable Way

struct Meta: Codable {
    let orderId: String
    let customer: String
}

try Payment(...
    meta: Meta(
        orderId: "#1234",
        customer: "#customer-id"
    ),
...)

1.7.1 Version

13 Sep 14:51
88c94ab
Compare
Choose a tag to compare
  • Added meta field to the Payment struct

Updated TabbyCheckoutSnippet

05 Sep 15:05
da53d00
Compare
Choose a tag to compare
  • Meet TabbyCheckoutSnippet with updated typography and with optimized layout
    TabbyCheckoutSnippet_AR
    TabbyCheckoutSnippet_EN

Fixed availability issues on the SwiftUI previews

05 Jul 07:03
b755900
Compare
Choose a tag to compare
Merge pull request #19 from tabby-ai/1.6.2-fix-availability-annotatio…

…ns-for-previews

Fixed available annotations for the previews

Minor fixes with minimal iOS version was bump

20 Jun 14:25
a57b445
Compare
Choose a tag to compare
Merge pull request #16 from tabby-ai/1.6.1-fix-version-minimal-ios-up

Fix @available specifiers and update Readme

Minimal iOS version was bumped to 14.0

20 Jun 12:44
a57b445
Compare
Choose a tag to compare
Merge pull request #16 from tabby-ai/1.6.1-fix-version-minimal-ios-up

Fix @available specifiers and update Readme