@autofleet/element-pay 2.2.8 → 2.2.10

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/lib/index.d.cts CHANGED
@@ -61,7 +61,9 @@ type CardCreateDataInput = {
61
61
  description?: InputMaybe$1<Scalars$1['String']['input']>;
62
62
  embossing: EmbossingInput;
63
63
  shippingAddress?: InputMaybe$1<AddressInput>;
64
+ shippingMethod?: InputMaybe$1<ShippingMethod>;
64
65
  vehicleId: Scalars$1['ID']['input'];
66
+ virtualExternalId?: InputMaybe$1<Scalars$1['String']['input']>;
65
67
  };
66
68
  type ClientOnboardInput = {
67
69
  address: AddressInput;
@@ -123,6 +125,7 @@ declare enum JobCodeEntryOptionEnum {
123
125
  type LinkedCardInfoInput = {
124
126
  embossing: EmbossingInput;
125
127
  shippingAddress?: InputMaybe$1<AddressInput>;
128
+ shippingMethod?: InputMaybe$1<ShippingMethod>;
126
129
  vehicleDescription?: InputMaybe$1<Scalars$1['String']['input']>;
127
130
  };
128
131
  declare enum LoginType {
@@ -142,6 +145,7 @@ type OrganizationCreateInput = {
142
145
  integratorId?: InputMaybe$1<Scalars$1['ID']['input']>;
143
146
  name: Scalars$1['String']['input'];
144
147
  onboardedBy?: InputMaybe$1<Scalars$1['String']['input']>;
148
+ requireServiceCardBilling?: InputMaybe$1<Scalars$1['Boolean']['input']>;
145
149
  taxId?: InputMaybe$1<Scalars$1['String']['input']>;
146
150
  unitsId?: InputMaybe$1<Scalars$1['String']['input']>;
147
151
  useTspMetadata?: InputMaybe$1<Scalars$1['Boolean']['input']>;
@@ -170,6 +174,11 @@ declare enum RoleType {
170
174
  Manager = "MANAGER",
171
175
  ViewOnly = "VIEW_ONLY",
172
176
  }
177
+ type ShippingMethod = {
178
+ account?: InputMaybe$1<Scalars$1['String']['input']>;
179
+ carrier?: InputMaybe$1<Scalars$1['String']['input']>;
180
+ method?: InputMaybe$1<Scalars$1['String']['input']>;
181
+ };
173
182
  declare enum SortDirection$1 {
174
183
  Asc = "ASC",
175
184
  AscNullsFirst = "ASC_NULLS_FIRST",
package/lib/index.d.ts CHANGED
@@ -62,7 +62,9 @@ type CardCreateDataInput = {
62
62
  description?: InputMaybe$1<Scalars$1['String']['input']>;
63
63
  embossing: EmbossingInput;
64
64
  shippingAddress?: InputMaybe$1<AddressInput>;
65
+ shippingMethod?: InputMaybe$1<ShippingMethod>;
65
66
  vehicleId: Scalars$1['ID']['input'];
67
+ virtualExternalId?: InputMaybe$1<Scalars$1['String']['input']>;
66
68
  };
67
69
  type ClientOnboardInput = {
68
70
  address: AddressInput;
@@ -124,6 +126,7 @@ declare enum JobCodeEntryOptionEnum {
124
126
  type LinkedCardInfoInput = {
125
127
  embossing: EmbossingInput;
126
128
  shippingAddress?: InputMaybe$1<AddressInput>;
129
+ shippingMethod?: InputMaybe$1<ShippingMethod>;
127
130
  vehicleDescription?: InputMaybe$1<Scalars$1['String']['input']>;
128
131
  };
129
132
  declare enum LoginType {
@@ -143,6 +146,7 @@ type OrganizationCreateInput = {
143
146
  integratorId?: InputMaybe$1<Scalars$1['ID']['input']>;
144
147
  name: Scalars$1['String']['input'];
145
148
  onboardedBy?: InputMaybe$1<Scalars$1['String']['input']>;
149
+ requireServiceCardBilling?: InputMaybe$1<Scalars$1['Boolean']['input']>;
146
150
  taxId?: InputMaybe$1<Scalars$1['String']['input']>;
147
151
  unitsId?: InputMaybe$1<Scalars$1['String']['input']>;
148
152
  useTspMetadata?: InputMaybe$1<Scalars$1['Boolean']['input']>;
@@ -171,6 +175,11 @@ declare enum RoleType {
171
175
  Manager = "MANAGER",
172
176
  ViewOnly = "VIEW_ONLY",
173
177
  }
178
+ type ShippingMethod = {
179
+ account?: InputMaybe$1<Scalars$1['String']['input']>;
180
+ carrier?: InputMaybe$1<Scalars$1['String']['input']>;
181
+ method?: InputMaybe$1<Scalars$1['String']['input']>;
182
+ };
174
183
  declare enum SortDirection$1 {
175
184
  Asc = "ASC",
176
185
  AscNullsFirst = "ASC_NULLS_FIRST",