zuora_connect 1.7.74 → 1.7.75

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6eff52cb84d4ef66a63207db1a4798557a86e183
4
- data.tar.gz: e93285ee7c47c60b3776c500b4c2a6bce7aa06c3
3
+ metadata.gz: 059b08f42e2f350d171793d7ae9330ab24a04dbe
4
+ data.tar.gz: 23c5d5381b0dc9ee4803c5d3362b453badf14160
5
5
  SHA512:
6
- metadata.gz: 89ffe5500089552a003b03e68b80de0e88b181d82e7c0f1aac803e9ad21b3d4164a42c6fdb68e50259e90aede6dc999ebf9f97c59276439271ec21a55c62b6fd
7
- data.tar.gz: e16af0b80d3b8ab03bd652cee7fd7cc8fb82efc7657ddf2e4e7da4966fb271d77dedbf0ee13db460d92c7bc3eb170ba63c80f280d7059240f6f44affb1cf0295
6
+ metadata.gz: 70f5d5920db94367cff248a3fd6429f917003cf2416ac826ab765f6e7b390de64634de9343ec72495c9c2c102facf75e221b4df2c4fe6e327de742eb586c64da
7
+ data.tar.gz: c829dafcca413c77216d99c80436fcc1f3195b44317a0974d72d5ca7644b339d29c578a1fe8832fa85f552eba7ffd09b141695c75cd1cb3e28cac93ec7fe00a0
@@ -1,4 +1,4 @@
1
- class CreateConnectAppInstances < ActiveRecord::Migration[4.2]
1
+ class CreateConnectAppInstances < ActiveRecord::Migration
2
2
  def change
3
3
  if !ActiveRecord::Base.connection.table_exists?('zuora_connect_app_instances')
4
4
  create_table :zuora_connect_app_instances do |t|
@@ -1,4 +1,4 @@
1
- class AddTokensToAppInstance < ActiveRecord::Migration[4.2]
1
+ class AddTokensToAppInstance < ActiveRecord::Migration
2
2
  def change
3
3
  add_column :zuora_connect_app_instances, :access_token, :string unless column_exists? :zuora_connect_app_instances, :access_token
4
4
  add_column :zuora_connect_app_instances, :refresh_token, :string unless column_exists? :zuora_connect_app_instances, :refresh_token
@@ -1,4 +1,4 @@
1
- class AddTokenToAppInstance < ActiveRecord::Migration[4.2]
1
+ class AddTokenToAppInstance < ActiveRecord::Migration
2
2
  def change
3
3
  add_column :zuora_connect_app_instances, :token, :string unless column_exists? :zuora_connect_app_instances, :token
4
4
  end
@@ -1,4 +1,4 @@
1
- class AddSessionsTable < ActiveRecord::Migration[4.2]
1
+ class AddSessionsTable < ActiveRecord::Migration
2
2
  def change
3
3
  if !ActiveRecord::Base.connection.table_exists?('sessions')
4
4
  create_table :sessions do |t|
@@ -1,4 +1,4 @@
1
- class AddExpirationToAppInstance < ActiveRecord::Migration[4.2]
1
+ class AddExpirationToAppInstance < ActiveRecord::Migration
2
2
  def change
3
3
  add_column :zuora_connect_app_instances, :oauth_expires_at, :datetime unless column_exists? :zuora_connect_app_instances, :oauth_expires_at
4
4
  end
@@ -1,4 +1,4 @@
1
- class AddNewApiToken < ActiveRecord::Migration[4.2]
1
+ class AddNewApiToken < ActiveRecord::Migration
2
2
  def change
3
3
  add_column :zuora_connect_app_instances, :api_token, :string unless column_exists? :zuora_connect_app_instances, :api_token
4
4
  end
@@ -1,4 +1,4 @@
1
- class AddCatalogDataToAppInstance < ActiveRecord::Migration[4.2]
1
+ class AddCatalogDataToAppInstance < ActiveRecord::Migration
2
2
  def change
3
3
  add_column :zuora_connect_app_instances, :catalog_updated_at, :datetime unless column_exists? :zuora_connect_app_instances, :catalog_updated_at
4
4
  add_column :zuora_connect_app_instances, :catalog, :jsonb, default: {} unless column_exists? :zuora_connect_app_instances, :catalog
@@ -1,4 +1,4 @@
1
- class AddCatalogMappingsToAppInstance < ActiveRecord::Migration[4.2]
1
+ class AddCatalogMappingsToAppInstance < ActiveRecord::Migration
2
2
  def change
3
3
  add_column :zuora_connect_app_instances, :catalog_mapping, :jsonb, default: {} unless column_exists? :zuora_connect_app_instances, :catalog_mapping
4
4
  end
@@ -1,4 +1,4 @@
1
- class CatalogDefault < ActiveRecord::Migration[4.2]
1
+ class CatalogDefault < ActiveRecord::Migration
2
2
  def change
3
3
  change_column :zuora_connect_app_instances, :catalog, :jsonb, default: {}
4
4
  end
@@ -1,4 +1,4 @@
1
- class AddCatalogAttemptedAt < ActiveRecord::Migration[4.2]
1
+ class AddCatalogAttemptedAt < ActiveRecord::Migration
2
2
  def change
3
3
  add_column :zuora_connect_app_instances, :catalog_update_attempt_at, :datetime unless column_exists? :zuora_connect_app_instances, :catalog_update_attempt_at
4
4
  end
@@ -1,4 +1,4 @@
1
- class AddFieldsToInstance < ActiveRecord::Migration[4.2]
1
+ class AddFieldsToInstance < ActiveRecord::Migration
2
2
  def change
3
3
  add_column :zuora_connect_app_instances, :name, :string, default: "" unless column_exists? :zuora_connect_app_instances, :name
4
4
  end
@@ -1,3 +1,3 @@
1
1
  module ZuoraConnect
2
- VERSION = "1.7.74"
2
+ VERSION = "1.7.75"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zuora_connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.74
4
+ version: 1.7.75
5
5
  platform: ruby
6
6
  authors:
7
7
  - Connect Team