@0xslots/sdk 0.8.3 → 0.9.1

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.
package/dist/index.d.ts CHANGED
@@ -750,6 +750,7 @@ type MetadataSlot_Filter = {
750
750
  type MetadataSlot_OrderBy = 'createdAt' | 'createdTx' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'updateCount' | 'updatedAt' | 'updatedBy' | 'updatedTx' | 'uri';
751
751
  type MetadataUpdatedEvent = {
752
752
  __typename?: 'MetadataUpdatedEvent';
753
+ author: Account;
753
754
  blockNumber: Scalars['BigInt']['output'];
754
755
  id: Scalars['ID']['output'];
755
756
  slot: Slot;
@@ -761,6 +762,27 @@ type MetadataUpdatedEvent_Filter = {
761
762
  /** Filter for the block changed event. */
762
763
  _change_block?: InputMaybe<BlockChangedFilter>;
763
764
  and?: InputMaybe<Array<InputMaybe<MetadataUpdatedEvent_Filter>>>;
765
+ author?: InputMaybe<Scalars['String']['input']>;
766
+ author_?: InputMaybe<Account_Filter>;
767
+ author_contains?: InputMaybe<Scalars['String']['input']>;
768
+ author_contains_nocase?: InputMaybe<Scalars['String']['input']>;
769
+ author_ends_with?: InputMaybe<Scalars['String']['input']>;
770
+ author_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
771
+ author_gt?: InputMaybe<Scalars['String']['input']>;
772
+ author_gte?: InputMaybe<Scalars['String']['input']>;
773
+ author_in?: InputMaybe<Array<Scalars['String']['input']>>;
774
+ author_lt?: InputMaybe<Scalars['String']['input']>;
775
+ author_lte?: InputMaybe<Scalars['String']['input']>;
776
+ author_not?: InputMaybe<Scalars['String']['input']>;
777
+ author_not_contains?: InputMaybe<Scalars['String']['input']>;
778
+ author_not_contains_nocase?: InputMaybe<Scalars['String']['input']>;
779
+ author_not_ends_with?: InputMaybe<Scalars['String']['input']>;
780
+ author_not_ends_with_nocase?: InputMaybe<Scalars['String']['input']>;
781
+ author_not_in?: InputMaybe<Array<Scalars['String']['input']>>;
782
+ author_not_starts_with?: InputMaybe<Scalars['String']['input']>;
783
+ author_not_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
784
+ author_starts_with?: InputMaybe<Scalars['String']['input']>;
785
+ author_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
764
786
  blockNumber?: InputMaybe<Scalars['BigInt']['input']>;
765
787
  blockNumber_gt?: InputMaybe<Scalars['BigInt']['input']>;
766
788
  blockNumber_gte?: InputMaybe<Scalars['BigInt']['input']>;
@@ -838,7 +860,7 @@ type MetadataUpdatedEvent_Filter = {
838
860
  uri_starts_with?: InputMaybe<Scalars['String']['input']>;
839
861
  uri_starts_with_nocase?: InputMaybe<Scalars['String']['input']>;
840
862
  };
841
- type MetadataUpdatedEvent_OrderBy = 'blockNumber' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx' | 'uri';
863
+ type MetadataUpdatedEvent_OrderBy = 'author' | 'author__id' | 'author__occupiedCount' | 'author__slotCount' | 'author__type' | 'blockNumber' | 'id' | 'slot' | 'slot__collectedTax' | 'slot__createdAt' | 'slot__createdTx' | 'slot__deposit' | 'slot__id' | 'slot__liquidationBountyBps' | 'slot__manager' | 'slot__minDepositSeconds' | 'slot__mutableModule' | 'slot__mutableTax' | 'slot__occupant' | 'slot__price' | 'slot__recipient' | 'slot__taxPercentage' | 'slot__totalCollected' | 'slot__updatedAt' | 'timestamp' | 'tx' | 'uri';
842
864
  type Module = {
843
865
  __typename?: 'Module';
844
866
  factory: Factory;
@@ -3452,6 +3474,11 @@ type GetMetadataUpdatedEventsQuery = {
3452
3474
  __typename?: 'Slot';
3453
3475
  id: string;
3454
3476
  };
3477
+ author: {
3478
+ __typename?: 'Account';
3479
+ id: string;
3480
+ type: AccountType;
3481
+ };
3455
3482
  }>;
3456
3483
  };
3457
3484
  type SlotFieldsFragment = {
package/dist/index.js CHANGED
@@ -761,6 +761,10 @@ var GetMetadataUpdatedEventsDocument = gql`
761
761
  slot {
762
762
  id
763
763
  }
764
+ author {
765
+ id
766
+ type
767
+ }
764
768
  uri
765
769
  timestamp
766
770
  blockNumber