@0xslots/sdk 0.7.0 → 0.8.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.
package/dist/index.d.ts CHANGED
@@ -90,7 +90,7 @@ type AccountSlotsAsRecipientArgs = {
90
90
  skip?: InputMaybe<Scalars['Int']['input']>;
91
91
  where?: InputMaybe<Slot_Filter>;
92
92
  };
93
- type AccountType = 'CONTRACT' | 'EOA' | 'SPLIT';
93
+ type AccountType = 'CONTRACT' | 'DELEGATED' | 'EOA' | 'SPLIT';
94
94
  type Account_Filter = {
95
95
  /** Filter for the block changed event. */
96
96
  _change_block?: InputMaybe<BlockChangedFilter>;
@@ -2963,6 +2963,7 @@ type SlotFieldsFragment = {
2963
2963
  recipientAccount: {
2964
2964
  __typename?: 'Account';
2965
2965
  id: string;
2966
+ type: AccountType;
2966
2967
  slotCount: number;
2967
2968
  occupiedCount: number;
2968
2969
  };
@@ -2983,6 +2984,7 @@ type SlotFieldsFragment = {
2983
2984
  occupantAccount?: {
2984
2985
  __typename?: 'Account';
2985
2986
  id: string;
2987
+ type: AccountType;
2986
2988
  slotCount: number;
2987
2989
  occupiedCount: number;
2988
2990
  } | null;
@@ -3018,6 +3020,7 @@ type GetSlotsQuery = {
3018
3020
  recipientAccount: {
3019
3021
  __typename?: 'Account';
3020
3022
  id: string;
3023
+ type: AccountType;
3021
3024
  slotCount: number;
3022
3025
  occupiedCount: number;
3023
3026
  };
@@ -3038,6 +3041,7 @@ type GetSlotsQuery = {
3038
3041
  occupantAccount?: {
3039
3042
  __typename?: 'Account';
3040
3043
  id: string;
3044
+ type: AccountType;
3041
3045
  slotCount: number;
3042
3046
  occupiedCount: number;
3043
3047
  } | null;
@@ -3070,6 +3074,7 @@ type GetSlotQuery = {
3070
3074
  recipientAccount: {
3071
3075
  __typename?: 'Account';
3072
3076
  id: string;
3077
+ type: AccountType;
3073
3078
  slotCount: number;
3074
3079
  occupiedCount: number;
3075
3080
  };
@@ -3090,6 +3095,7 @@ type GetSlotQuery = {
3090
3095
  occupantAccount?: {
3091
3096
  __typename?: 'Account';
3092
3097
  id: string;
3098
+ type: AccountType;
3093
3099
  slotCount: number;
3094
3100
  occupiedCount: number;
3095
3101
  } | null;
@@ -3126,6 +3132,7 @@ type GetSlotsByRecipientQuery = {
3126
3132
  recipientAccount: {
3127
3133
  __typename?: 'Account';
3128
3134
  id: string;
3135
+ type: AccountType;
3129
3136
  slotCount: number;
3130
3137
  occupiedCount: number;
3131
3138
  };
@@ -3146,6 +3153,7 @@ type GetSlotsByRecipientQuery = {
3146
3153
  occupantAccount?: {
3147
3154
  __typename?: 'Account';
3148
3155
  id: string;
3156
+ type: AccountType;
3149
3157
  slotCount: number;
3150
3158
  occupiedCount: number;
3151
3159
  } | null;
@@ -3182,6 +3190,7 @@ type GetSlotsByOccupantQuery = {
3182
3190
  recipientAccount: {
3183
3191
  __typename?: 'Account';
3184
3192
  id: string;
3193
+ type: AccountType;
3185
3194
  slotCount: number;
3186
3195
  occupiedCount: number;
3187
3196
  };
@@ -3202,6 +3211,7 @@ type GetSlotsByOccupantQuery = {
3202
3211
  occupantAccount?: {
3203
3212
  __typename?: 'Account';
3204
3213
  id: string;
3214
+ type: AccountType;
3205
3215
  slotCount: number;
3206
3216
  occupiedCount: number;
3207
3217
  } | null;
package/dist/index.js CHANGED
@@ -32,6 +32,7 @@ var SlotFieldsFragmentDoc = gql`
32
32
  recipient
33
33
  recipientAccount {
34
34
  id
35
+ type
35
36
  slotCount
36
37
  occupiedCount
37
38
  }
@@ -54,6 +55,7 @@ var SlotFieldsFragmentDoc = gql`
54
55
  occupant
55
56
  occupantAccount {
56
57
  id
58
+ type
57
59
  slotCount
58
60
  occupiedCount
59
61
  }