File tree Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 168
168
|
169
169
*/
170
170
171
- 'api_version ' => env ('SHOPIFY_API_VERSION ' , '2024-01 ' ),
171
+ 'api_version ' => env ('SHOPIFY_API_VERSION ' , '2024-04 ' ),
172
172
173
173
/*
174
174
|--------------------------------------------------------------------------
396
396
'address' => env('SHOPIFY_WEBHOOK_3_ADDRESS', 'https://some-app.com/webhook/orders-create'),
397
397
'class' => \App\Shopify\Actions\ExampleAppJob::class
398
398
],
399
- */
400
- ],
399
+ */ ],
401
400
402
401
/*
403
402
|--------------------------------------------------------------------------
416
415
'display_scope' => env('SHOPIFY_SCRIPTTAG_1_DISPLAY_SCOPE', 'online_store')
417
416
],
418
417
...
419
- */
420
- ],
418
+ */ ],
421
419
422
420
/*
423
421
|--------------------------------------------------------------------------
441
439
'job' => env('AFTER_AUTHENTICATE_JOB'), // example: \App\Jobs\AfterAuthorizeJob::class
442
440
'inline' => env('AFTER_AUTHENTICATE_JOB_INLINE', false) // False = dispatch job for later, true = dispatch immediately
443
441
],
444
- */
445
- ],
442
+ */ ],
446
443
447
444
/*
448
445
|--------------------------------------------------------------------------
551
548
* Cache duration
552
549
*/
553
550
'cache_duration ' => 12 ,
554
- /*
551
+ /*
555
552
* At which levels of theme support the use of "theme app extension" is not available
556
553
* and script tags will be installed.
557
554
* Available levels: FULL, PARTIAL, UNSUPPORTED.
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public function testMake(): void
42
42
$ this ->assertInstanceOf (BasicShopifyAPI::class, $ api );
43
43
$ this ->assertSame (Util::getShopifyConfig ('api_secret ' ), $ this ->app ['config ' ]->get ('shopify-app.api_secret ' ));
44
44
$ this ->assertSame (Util::getShopifyConfig ('api_key ' ), $ this ->app ['config ' ]->get ('shopify-app.api_key ' ));
45
- $ this ->assertSame ($ this ->app ['config ' ]->get ('shopify-app.api_version ' ), '2024-01 ' );
45
+ $ this ->assertSame ($ this ->app ['config ' ]->get ('shopify-app.api_version ' ), '2024-04 ' );
46
46
}
47
47
48
48
public function testSetAndGetApi (): void
You can’t perform that action at this time.
0 commit comments